Class: PayPal::SDK::Merchant::DataTypes::PaymentItemInfoType

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

Overview

PaymentItemInfoType Information about a PayPal item.

Class Method Summary collapse

Class Method Details

.load_membersObject



2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2028

def self.load_members
  # Invoice number you set in the original transaction. Character length and limitations: 127 single-byte alphanumeric characters 
  object_of :InvoiceID, String, :namespace => :ebl
  # Custom field you set in the original transaction. Character length and limitations: 127 single-byte alphanumeric characters
  object_of :Custom, String, :namespace => :ebl
  # Memo entered by your customer in PayPal Website Payments note field. Character length and limitations: 255 single-byte alphanumeric characters
  object_of :Memo, String, :namespace => :ebl
  # Amount of tax charged on transaction
  object_of :SalesTax, String, :namespace => :ebl
  # Details about the indivudal purchased item
  array_of :PaymentItem, PaymentItemType, :namespace => :ebl
  # Information about the transaction if it was created via PayPal Subcriptions
  object_of :Subscription, SubscriptionInfoType, :namespace => :ebl
  # Information about the transaction if it was created via an auction
  object_of :Auction, AuctionInfoType, :namespace => :ebl
end