Api\ServiceType\ApiService::SetCustomerBillingAgreement PHP Метод

SetCustomerBillingAgreement() публичный метод

Method to call the operation originally named SetCustomerBillingAgreement Meta informations extracted from the WSDL - SOAPHeaderNames : RequesterCredentials - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType - SOAPHeaders : required
public SetCustomerBillingAgreement ( Api\StructType\ApiSetCustomerBillingAgreementReq $setCustomerBillingAgreementRequest ) : Api\StructType\ApiSetCustomerBillingAgreementResponseType | boolean
$setCustomerBillingAgreementRequest Api\StructType\ApiSetCustomerBillingAgreementReq
Результат Api\StructType\ApiSetCustomerBillingAgreementResponseType | boolean
    public function SetCustomerBillingAgreement(\Api\StructType\ApiSetCustomerBillingAgreementReq $setCustomerBillingAgreementRequest)
    {
        try {
            $this->setResult(self::getSoapClient()->SetCustomerBillingAgreement($setCustomerBillingAgreementRequest));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService