Class: PayPal::SDK::ButtonManager::DataTypes::PayerInfoType

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

Overview

PayerInfoType Payer information

Class Method Summary collapse

Class Method Details

.load_membersObject



1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 1676

def self.load_members
  # Email address of payer Character length and limitations: 127 single-byte characters
  object_of :Payer, String, :namespace => :ebl
  # Unique customer ID Character length and limitations: 17 single-byte characters
  object_of :PayerID, String, :namespace => :ebl
  # Status of payer's email address 
  object_of :PayerStatus, PayPalUserStatusCodeType, :namespace => :ebl
  # Name of payer 
  object_of :PayerName, PersonNameType, :namespace => :ebl
  # Payment sender's country of residence using standard two-character ISO 3166 country codes. Character length and limitations: Two single-byte characters
  object_of :PayerCountry, CountryCodeType, :namespace => :ebl
  # Payer's business name. Character length and limitations: 127 single-byte characters
  object_of :PayerBusiness, String, :namespace => :ebl
  # Payer's business address
  object_of :Address, AddressType, :namespace => :ebl
  # Business contact telephone number
  object_of :ContactPhone, String, :namespace => :ebl
  # Details about payer's tax info. Refer to the TaxIdDetailsType for more details. 
  object_of :TaxIdDetails, TaxIdDetailsType, :namespace => :ebl
  # Holds any enhanced information about the payer
  object_of :EnhancedPayerInfo, EnhancedPayerInfoType, :namespace => :ebl
end