Class: PayPal::SDK::ButtonManager::DataTypes::DiscountType
- Inherits:
-
DataType
- Object
- Core::API::DataTypes::Base
- DataType
- PayPal::SDK::ButtonManager::DataTypes::DiscountType
- Defined in:
- lib/paypal-sdk/button_manager/data_types.rb
Overview
Describes discount information
Class Method Summary collapse
Class Method Details
.load_members ⇒ Object
3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 |
# File 'lib/paypal-sdk/button_manager/data_types.rb', line 3125 def self.load_members # Item nameOptional Character length and limits: 127 single-byte characters object_of :Name, String, :namespace => :ebl # description of the discountOptional Character length and limits: 127 single-byte characters object_of :Description, String, :namespace => :ebl # amount discountedOptional object_of :Amount, BasicAmountType, :namespace => :ebl, :required => true # offer typeOptional object_of :RedeemedOfferType, RedeemedOfferType, :namespace => :ebl # offer IDOptional Character length and limits: 64 single-byte characters object_of :RedeemedOfferID, String, :namespace => :ebl end |