/**
  * Retrieves the details of the third-party payment service workflows configured for the site.
  *
  * @return MozuClient
  */
 public static function getThirdPartyPaymentWorkflowsClient()
 {
     $url = PaymentSettingsUrl::getThirdPartyPaymentWorkflowsUrl();
     $mozuClient = new MozuClient();
     $mozuClient->withResourceUrl($url);
     return $mozuClient;
 }
 /**
  * checkout-paymentsettings Delete DeleteThirdPartyPaymentWorkflow description DOCUMENT_HERE 
  *
  * @param string $fullyQualifiedName 
  */
 public static function deleteThirdPartyPaymentWorkflowClient($fullyQualifiedName)
 {
     $url = PaymentSettingsUrl::deleteThirdPartyPaymentWorkflowUrl($fullyQualifiedName);
     $mozuClient = new MozuClient();
     $mozuClient->withResourceUrl($url);
     return $mozuClient;
 }