Class: PayPal::SDK::ButtonManagerRails::DataTypes::IncentiveAppliedDetailsType

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

Overview

Details of incentive application on individual bucket/item.

Class Method Summary collapse

Class Method Details

.load_membersObject



2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
# File 'lib/paypal-sdk/button_manager_rails/data_types.rb', line 2108

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