Class: PayPal::SDK::Merchant::DataTypes::DoDirectPaymentResponseType

Inherits:
AbstractResponseType show all
Defined in:
lib/paypal-sdk/merchant/data_types.rb

Overview

The amount of the payment as specified by you on DoDirectPaymentRequest.

Class Method Summary collapse

Class Method Details

.load_membersObject



4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
# File 'lib/paypal-sdk/merchant/data_types.rb', line 4531

def self.load_members
  # The amount of the payment as specified by you on DoDirectPaymentRequest.
  object_of :Amount, BasicAmountType, :namespace => :ns, :required => true
  # Address Verification System response code. Character limit: One single-byte alphanumeric character AVS CodeMeaningMatched Details A AddressAddress only (no ZIP) B International “A”Address only (no ZIP) CInternational “N” None DInternational “X” Address and Postal Code E Not allowed for MOTO (Internet/Phone) transactions Not applicable F UK-specific “X”Address and Postal Code G Global Unavailable Not applicable I International UnavailableNot applicable N NoNone PPostal (International “Z”)Postal Code only (no Address) RRetryNot applicable S Service not Supported Not applicable U UnavailableNot applicable W Whole ZIPNine-digit ZIP code (no Address) X Exact match Address and nine-digit ZIP code Y YesAddress and five-digit ZIP Z ZIP Five-digit ZIP code (no Address) All others Error Not applicable
  object_of :AVSCode, String, :namespace => :ns, :required => true
  # Result of the CVV2 check by PayPal. CVV2 CodeMeaningMatched Details M MatchCVV2 N No match None P Not ProcessedNot applicable SService not SupportedNot applicable U UnavailableNot applicable XNo response Not applicable All others ErrorNot applicable 
  object_of :CVV2Code, String, :namespace => :ns, :required => true
  # Transaction identification number. Character length and limitations: 19 characters maximum.
  object_of :TransactionID, String, :namespace => :ns, :required => true
  # The reason why a particular transaction went in pending. 
  object_of :PendingReason, PendingStatusCodeType, :namespace => :ns
  # This will identify the actual transaction status. 
  object_of :PaymentStatus, PaymentStatusCodeType, :namespace => :ns
  object_of :FMFDetails, FMFDetailsType, :namespace => :ns
  object_of :ThreeDSecureResponse, ThreeDSecureResponseType, :namespace => :ns
  # Response code from the processor when a recurring transaction is declined.  
  object_of :PaymentAdviceCode, String, :namespace => :ns
end