Api\ServiceType\ApiDo::DoMobileCheckoutPayment PHP Method

DoMobileCheckoutPayment() public method

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