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

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

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