Class: PayPal::SDK::Merchant::DataTypes::ExecuteCheckoutOperationsRequestDetailsType

Inherits:
DataType
  • Object
show all
Defined in:
lib/paypal-sdk/merchant/data_types.rb

Overview

On your first invocation of ExecuteCheckoutOperationsRequest, the value of this token is returned by ExecuteCheckoutOperationsResponse. Optional Include this element and its value only if you want to modify an existing checkout session with another invocation of ExecuteCheckoutOperationsRequest; for example, if you want the customer to edit his shipping address on PayPal. Character length and limitations: 20 single-byte characters

Class Method Summary collapse

Class Method Details

.load_membersObject



980
981
982
983
984
985
986
987
# File 'lib/paypal-sdk/merchant/data_types.rb', line 980

def self.load_members
  # On your first invocation of ExecuteCheckoutOperationsRequest, the value of this token is returned by ExecuteCheckoutOperationsResponse. Optional Include this element and its value only if you want to modify an existing checkout session with another invocation of ExecuteCheckoutOperationsRequest; for example, if you want the customer to edit his shipping address on PayPal. Character length and limitations: 20 single-byte characters 
  object_of :Token, String, :namespace => :ebl
  # All the Data required to initiate the checkout session is passed in this element. 
  object_of :SetDataRequest, SetDataRequestType, :namespace => :ebl, :required => true
  # If auto authorization is required, this should be passed in with IsRequested set to yes. 
  object_of :AuthorizationRequest, AuthorizationRequestType, :namespace => :ebl
end