Api\ServiceType\ApiService::GetBillingAgreementCustomerDetails PHP Method

GetBillingAgreementCustomerDetails() public method

Method to call the operation originally named GetBillingAgreementCustomerDetails Meta informations extracted from the WSDL - SOAPHeaderNames : RequesterCredentials - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType - SOAPHeaders : required
public GetBillingAgreementCustomerDetails ( Api\StructType\ApiGetBillingAgreementCustomerDetailsReq $getBillingAgreementCustomerDetailsRequest ) : Api\StructType\ApiGetBillingAgreementCustomerDetailsResponseType | boolean
$getBillingAgreementCustomerDetailsRequest Api\StructType\ApiGetBillingAgreementCustomerDetailsReq
return Api\StructType\ApiGetBillingAgreementCustomerDetailsResponseType | boolean
    public function GetBillingAgreementCustomerDetails(\Api\StructType\ApiGetBillingAgreementCustomerDetailsReq $getBillingAgreementCustomerDetailsRequest)
    {
        try {
            $this->setResult(self::getSoapClient()->GetBillingAgreementCustomerDetails($getBillingAgreementCustomerDetailsRequest));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService