Class: PayPal::SDK::Merchant::DataTypes::BuyerDetailsType

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

Overview

Details about the buyer’s account passed in by the merchant or partner. Optional.

Class Method Summary collapse

Class Method Details

.load_membersObject



2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2233

def self.load_members
  # The client's unique ID for this user. 
  object_of :BuyerId, String, :namespace => :ebl
  # The user name of the user at the marketplaces site. 
  object_of :BuyerUserName, String, :namespace => :ebl
  # Date when the user registered with the marketplace. 
  object_of :BuyerRegistrationDate, DateTime, :namespace => :ebl
  # Details about payer's tax info. Refer to the TaxIdDetailsType for more details. 
  object_of :TaxIdDetails, TaxIdDetailsType, :namespace => :ebl
  # Contains information that identifies the buyer. e.g. email address or the external remember me id. 
  object_of :IdentificationInfo, IdentificationInfoType, :namespace => :ebl
end