Class: PayPal::SDK::Merchant::DataTypes::IncentiveAppliedDetailsType

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

Overview

Details of incentive application on individual bucket/item.

Class Method Summary collapse

Class Method Details

.load_membersObject



2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
# File 'lib/paypal-sdk/merchant/data_types.rb', line 2167

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