class PayPal::SDK::Merchant::DataTypes::BuyerDetailsType
Details about the buyer's account passed in by the merchant or partner. Optional.
Public Class Methods
load_members()
click to toggle source
# 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