コード例 #1
0
 /**
  * admin-search Get GetSearchTuningRule description DOCUMENT_HERE 
  *
  * @param string $responseFields A list or array of fields returned for a call. These fields may be customized and may be used for various types of data calls in Mozu. For example, responseFields are returned for retrieving or updating attributes, carts, and messages in Mozu.
  * @param string $searchTuningRuleCode 
  * @return MozuClient
  */
 public static function getSearchTuningRuleClient($searchTuningRuleCode, $responseFields = null)
 {
     $url = SearchUrl::getSearchTuningRuleUrl($responseFields, $searchTuningRuleCode);
     $mozuClient = new MozuClient();
     $mozuClient->withResourceUrl($url);
     return $mozuClient;
 }