Class: PayPal::SDK::AdaptiveAccounts::DataTypes::GetVerifiedStatusResponse

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

Overview

Returned values are: VERIFIED|UNVERIFIED.

Class Method Summary collapse

Class Method Details

.load_membersObject



342
343
344
345
346
347
348
349
350
351
352
# File 'lib/paypal-sdk/adaptive_accounts/data_types.rb', line 342

def self.load_members
  include ResponseStatus
  object_of :responseEnvelope, ResponseEnvelope, :required => true
  # Returned values are: VERIFIED|UNVERIFIED. 
  object_of :accountStatus, String, :required => true
  # Returns countryCode belonging to PayPal account. 
  object_of :countryCode, String
  # Info about PayPal user such as emailAddress, accountId, firstName, lastName etc. 
  object_of :userInfo, UserInfoType
  array_of :error, ErrorData
end