/**
  * Retrieves a list of PublishSets including the product counts.
  *
  * @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.
  * @return MozuClient
  */
 public static function getPublishSetsClient($responseFields = null)
 {
     $url = PublishingScopeUrl::getPublishSetsUrl($responseFields);
     $mozuClient = new MozuClient();
     $mozuClient->withResourceUrl($url);
     return $mozuClient;
 }