Class: PayPal::SDK::AdaptivePayments::DataTypes::PayResponse
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::AdaptivePayments::DataTypes::PayResponse
- 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_members ⇒ Object
850 851 852 853 854 855 856 857 858 859 860 861 |
# 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 |