Api\ServiceType\ApiService::CreateMobilePayment PHP Method

CreateMobilePayment() public method

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