class PayPal::SDK::ButtonManagerRails::DataTypes::PayerInfoType

PayerInfoType Payer information

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/button_manager_rails/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