Class: PayPal::SDK::ButtonManagerRails::DataTypes::BuyerDetailsType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::ButtonManagerRails::DataTypes::BuyerDetailsType
- Defined in:
- lib/paypal-sdk/button_manager_rails/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_members ⇒ Object
2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 |
# File 'lib/paypal-sdk/button_manager_rails/data_types.rb', line 2168 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 |