Class: PayPal::SDK::ButtonManagerRails::DataTypes::PaymentItemInfoType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::ButtonManagerRails::DataTypes::PaymentItemInfoType
- Defined in:
- lib/paypal-sdk/button_manager_rails/data_types.rb
Overview
PaymentItemInfoType Information about a PayPal item.
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 |
# 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 |