class PayPal::SDK::AdaptivePayments::DataTypes::Receiver

Receiver is the party where funds are transferred to. A primary receiver receives a payment directly from the sender in a chained split payment. A primary receiver should not be specified when making a single or parallel split payment.

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/adaptive_payments/data_types.rb, line 471
def self.load_members
  object_of :amount, Float, :required => true
  object_of :email, String
  object_of :phone, PhoneNumberType
  object_of :primary, Boolean
  object_of :invoiceId, String
  object_of :paymentType, String
  object_of :paymentSubType, String
  object_of :accountId, String
end