PayPal\Service\PayPalAPIInterfaceServiceService::ExecuteCheckoutOperations PHP Method

ExecuteCheckoutOperations() public method

Service Call: ExecuteCheckoutOperations
public ExecuteCheckoutOperations ( ExecuteCheckoutOperationsReq $executeCheckoutOperationsReq, mixed $apiCredential = null ) : ExecuteCheckoutOperationsResponseType
$executeCheckoutOperationsReq PayPal\PayPalAPI\ExecuteCheckoutOperationsReq
$apiCredential mixed - Optional API credential - can either be a username configured in sdk_config.ini or a ICredential object created dynamically
return PayPal\PayPalAPI\ExecuteCheckoutOperationsResponseType
    public function ExecuteCheckoutOperations($executeCheckoutOperationsReq, $apiCredential = null)
    {
        $apiContext = new PPApiContext($this->config);
        $handlers = array(new PPMerchantServiceHandler($apiCredential, self::$SDK_NAME, self::$SDK_VERSION));
        $this->setStandardParams($executeCheckoutOperationsReq->ExecuteCheckoutOperationsRequest);
        $ret = new ExecuteCheckoutOperationsResponseType();
        $resp = $this->call('PayPalAPIAA', 'ExecuteCheckoutOperations', $executeCheckoutOperationsReq, $apiContext, $handlers);
        $ret->init(PPUtils::xmlToArray($resp));
        return $ret;
    }