You appear to be a bot. Output may be restricted
Description
Usage
Client::authorizeOnBillingAgreement( $requestParameters );
Parameters
- $requestParameters
- ( mixed ) optional –
Returns
void
Source
File name: easy-digital-downloads/includes/gateways/libs/amazon/Client.php
Lines:
1 to 29 of 29
public function authorizeOnBillingAgreement($requestParameters = array()) { $parameters = array(); $parameters['Action'] = 'AuthorizeOnBillingAgreement'; $requestParameters = array_change_key_case($requestParameters, CASE_LOWER); $fieldMappings = array( 'merchant_id' => 'SellerId', 'amazon_billing_agreement_id' => 'AmazonBillingAgreementId', 'authorization_reference_id' => 'AuthorizationReferenceId', 'authorization_amount' => 'AuthorizationAmount.Amount', 'currency_code' => 'AuthorizationAmount.CurrencyCode', 'seller_authorization_note' => 'SellerAuthorizationNote', 'transaction_timeout' => 'TransactionTimeout', 'capture_now' => 'CaptureNow', 'soft_descriptor' => 'SoftDescriptor', 'seller_note' => 'SellerNote', 'platform_id' => 'PlatformId', 'custom_information' => 'SellerOrderAttributes.CustomInformation', 'seller_order_id' => 'SellerOrderAttributes.SellerOrderId', 'store_name' => 'SellerOrderAttributes.StoreName', 'inherit_shipping_address' => 'InheritShippingAddress', 'mws_auth_token' => 'MWSAuthToken' ); $responseObject = $this->setParametersAndPost($parameters, $fieldMappings, $requestParameters); return ($responseObject); }