Class: PayPal::SDK::Merchant::DataTypes::ReceiverInfoType

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

Overview

ReceiverInfoType Receiver information.

Class Method Summary collapse

Class Method Details

.load_membersObject



1697
1698
1699
1700
1701
1702
1703
1704
# File 'lib/paypal-sdk/merchant/data_types.rb', line 1697

def self.load_members
  # Email address or account ID of the payment recipient (the seller). Equivalent to Receiver if payment is sent to primary account. Character length and limitations: 127 single-byte alphanumeric characters
  object_of :Business, String, :namespace => :ebl
  # Primary email address of the payment recipient (the seller). If you are the recipient of the payment and the payment is sent to your non-primary email address, the value of Receiver is still your primary email address. Character length and limitations: 127 single-byte alphanumeric characters
  object_of :Receiver, String, :namespace => :ebl
  # Unique account ID of the payment recipient (the seller). This value is the same as the value of the recipient's referral ID. 
  object_of :ReceiverID, String, :namespace => :ebl
end