Class: PayPal::SDK::Merchant::DataTypes::PaymentItemType

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

Overview

PaymentItemType Information about a Payment Item.

Class Method Summary collapse

Class Method Details

.load_membersObject



1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
# File 'lib/paypal-sdk/merchant/data_types.rb', line 1990

def self.load_members
  # eBay Auction Transaction ID of the Item Optional Character length and limitations: 255 single-byte characters 
  object_of :EbayItemTxnId, String, :namespace => :ebl
  # Item name set by you or entered by the customer. Character length and limitations: 127 single-byte alphanumeric characters
  object_of :Name, String, :namespace => :ebl
  # Item number set by you. Character length and limitations: 127 single-byte alphanumeric characters
  object_of :Number, String, :namespace => :ebl
  # Quantity set by you or entered by the customer. Character length and limitations: no limit
  object_of :Quantity, String, :namespace => :ebl
  # Amount of tax charged on payment 
  object_of :SalesTax, String, :namespace => :ebl
  # Amount of shipping charged on payment 
  object_of :ShippingAmount, String, :namespace => :ebl
  # Amount of handling charged on payment 
  object_of :HandlingAmount, String, :namespace => :ebl
  # Invoice item details 
  object_of :InvoiceItemDetails, InvoiceItemType, :namespace => :ebl
  # Coupon ID Number 
  object_of :CouponID, String, :namespace => :ebl
  # Amount Value of The Coupon 
  object_of :CouponAmount, String, :namespace => :ebl
  # Currency of the Coupon Amount 
  object_of :CouponAmountCurrency, String, :namespace => :ebl
  # Amount of Discount on this Loyalty Card
  object_of :LoyaltyCardDiscountAmount, String, :namespace => :ebl
  # Currency of the Discount
  object_of :LoyaltyCardDiscountCurrency, String, :namespace => :ebl
  # Cost of item 
  object_of :Amount, BasicAmountType, :namespace => :ebl
  # Item options selected in PayPal shopping cart 
  array_of :Options, OptionType, :namespace => :ebl
end