Class: PayPal::SDK::Merchant::DataTypes::DoMobileCheckoutPaymentResponseDetailsType

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

Overview

A free-form field for your own use, such as a tracking number or other value you want returned to you in IPN. Optional Character length and limitations: 256 single-byte alphanumeric characters

Class Method Summary collapse

Class Method Details

.load_membersObject



2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2652

def self.load_members
  # A free-form field for your own use, such as a tracking number or other value you want returned to you in IPN. Optional Character length and limitations: 256 single-byte alphanumeric characters
  object_of :Custom, String, :namespace => :ebl
  # Your own unique invoice or tracking number. Optional Character length and limitations: 127 single-byte alphanumeric characters
  object_of :InvoiceID, String, :namespace => :ebl
  # Information about the payer
  object_of :PayerInfo, PayerInfoType, :namespace => :ebl
  # Information about the transaction
  object_of :PaymentInfo, PaymentInfoType, :namespace => :ebl
end