class PayPal::SDK::ButtonManagerRails::DataTypes::DoMobileCheckoutPaymentResponseDetailsType

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

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/button_manager_rails/data_types.rb, line 2586
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