Class: PayPal::SDK::Permissions::DataTypes::GetAccessTokenRequest

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

Overview

The request use to retrieve a permanent access token. The client can either send the token and verifier, or a subject.

Class Method Summary collapse

Class Method Details

.load_membersObject



147
148
149
150
151
152
153
154
155
# File 'lib/paypal-sdk/permissions/data_types.rb', line 147

def self.load_members
  object_of :requestEnvelope, RequestEnvelope
  # The temporary request token received from the RequestPermissions call. 
  object_of :token, String
  # The verifier code returned to the client after the user authorization flow completed. 
  object_of :verifier, String
  # The subject email address used to represent existing 3rd Party Permissions relationship. This field can be used in lieu of the token and verifier. 
  object_of :subjectAlias, String
end