Class: PayPal::SDK::AdaptivePayments::DataTypes::PayResponse

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

Overview

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

Class Method Summary collapse

Class Method Details

.load_membersObject



838
839
840
841
842
843
844
845
846
847
848
849
# File 'lib/paypal-sdk/adaptive_payments/data_types.rb', line 838

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