class PayPal::SDK::Merchant::DataTypes::IncentiveAppliedDetailsType

Details of incentive application on individual bucket/item.

Public Class Methods

load_members() click to toggle source
# File lib/paypal-sdk/merchant/data_types.rb, line 2173
def self.load_members
  # PaymentRequestID uniquely identifies a bucket. It is the "bucket id" in the world of EC API.
  object_of :PaymentRequestID, String, :namespace => :ebl
  # The item id passed through by the merchant.
  object_of :ItemId, String, :namespace => :ebl
  # The item transaction id passed through by the merchant.
  object_of :ExternalTxnId, String, :namespace => :ebl
  # Discount offerred for this bucket or item.
  object_of :DiscountAmount, BasicAmountType, :namespace => :ebl
  # SubType for coupon.
  object_of :SubType, String, :namespace => :ebl
end