class PayPal::SDK::AdaptivePayments::DataTypes::PayResponse

The PayResponse contains the result of the Pay operation. The payKey and execution status of the request should always be provided.

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/adaptive_payments/data_types.rb, line 850
def self.load_members
  include ResponseStatus
  object_of :responseEnvelope, ResponseEnvelope, :required => true
  object_of :payKey, String, :required => true
  object_of :paymentExecStatus, String, :required => true
  object_of :payErrorList, PayErrorList
  object_of :paymentInfoList, PaymentInfoList, :required => true
  object_of :sender, SenderIdentifier
  object_of :defaultFundingPlan, FundingPlan
  object_of :warningDataList, WarningDataList
  array_of :error, ErrorData
end