class PayPal::SDK::ButtonManagerRails::DataTypes::PaymentItemInfoType

PaymentItemInfoType Information about a PayPal item.

Public Class Methods

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