Class: PayPal::SDK::ButtonManager::DataTypes::PaymentItemInfoType

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

Overview

PaymentItemInfoType Information about a PayPal item.

Class Method Summary collapse

Class Method Details

.load_membersObject



1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 1944

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