Class: Io::Flow::V0::Models::LocalizedLineItemDiscount
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::LocalizedLineItemDiscount
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Represents the requested, base, and localized amounts for a discount on a given line item. It applies to the entire line regardless of quantity.
Instance Attribute Summary collapse
-
#amount ⇒ Object
readonly
Returns the value of attribute amount.
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#currency ⇒ Object
readonly
Returns the value of attribute currency.
-
#discount_label ⇒ Object
readonly
Returns the value of attribute discount_label.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
-
#requested ⇒ Object
readonly
Returns the value of attribute requested.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ LocalizedLineItemDiscount
constructor
A new instance of LocalizedLineItemDiscount.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ LocalizedLineItemDiscount
Returns a new instance of LocalizedLineItemDiscount.
49195 49196 49197 49198 49199 49200 49201 49202 49203 49204 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49195 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:amount, :currency], 'LocalizedLineItemDiscount') @amount = HttpClient::Preconditions.assert_class('amount', opts.delete(:amount), Numeric) @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String) @label = (x = opts.delete(:label); x.nil? ? nil : HttpClient::Preconditions.assert_class('label', x, String)) @base = (x = opts.delete(:base); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x))) @requested = (x = opts.delete(:requested); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x))) @discount_label = (x = opts.delete(:discount_label); x.nil? ? nil : HttpClient::Preconditions.assert_class('discount_label', x, String)) end |
Instance Attribute Details
#amount ⇒ Object (readonly)
Returns the value of attribute amount.
49193 49194 49195 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49193 def amount @amount end |
#base ⇒ Object (readonly)
Returns the value of attribute base.
49193 49194 49195 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49193 def base @base end |
#currency ⇒ Object (readonly)
Returns the value of attribute currency.
49193 49194 49195 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49193 def currency @currency end |
#discount_label ⇒ Object (readonly)
Returns the value of attribute discount_label.
49193 49194 49195 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49193 def discount_label @discount_label end |
#label ⇒ Object (readonly)
Returns the value of attribute label.
49193 49194 49195 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49193 def label @label end |
#requested ⇒ Object (readonly)
Returns the value of attribute requested.
49193 49194 49195 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49193 def requested @requested end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
49210 49211 49212 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49210 def copy(incoming={}) LocalizedLineItemDiscount.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
49214 49215 49216 49217 49218 49219 49220 49221 49222 49223 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49214 def to_hash { :amount => amount, :currency => currency, :label => label, :base => base.nil? ? nil : base.to_hash, :requested => requested.nil? ? nil : requested.to_hash, :discount_label => discount_label } end |
#to_json ⇒ Object
49206 49207 49208 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49206 def to_json JSON.dump(to_hash) end |