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



1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 1648

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