Class: Io::Flow::V0::Models::OrderSummaryLineItem
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::OrderSummaryLineItem
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#discount ⇒ Object
readonly
Returns the value of attribute discount.
-
#duty ⇒ Object
readonly
Returns the value of attribute duty.
-
#item ⇒ Object
readonly
Returns the value of attribute item.
-
#price_attributes ⇒ Object
readonly
Returns the value of attribute price_attributes.
-
#quantity ⇒ Object
readonly
Returns the value of attribute quantity.
-
#tax ⇒ Object
readonly
Returns the value of attribute tax.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OrderSummaryLineItem
constructor
A new instance of OrderSummaryLineItem.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ OrderSummaryLineItem
Returns a new instance of OrderSummaryLineItem.
40800 40801 40802 40803 40804 40805 40806 40807 40808 40809 40810 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40800 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:item, :quantity, :total, :price_attributes], 'OrderSummaryLineItem') @item = (x = opts.delete(:item); x.is_a?(::Io::Flow::V0::Models::OrderSummaryItem) ? x : ::Io::Flow::V0::Models::OrderSummaryItem.new(x)) @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer) @discount = (x = opts.delete(:discount); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x))) @tax = (x = opts.delete(:tax); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::OrderSummaryLevy) ? x : ::Io::Flow::V0::Models::OrderSummaryLevy.new(x))) @duty = (x = opts.delete(:duty); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::OrderSummaryLevy) ? x : ::Io::Flow::V0::Models::OrderSummaryLevy.new(x))) @total = (x = opts.delete(:total); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)) @price_attributes = HttpClient::Preconditions.assert_class('price_attributes', opts.delete(:price_attributes), Hash).inject({}) { |h, d| h[d[0]] = (x = d[1]; x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)); h } end |
Instance Attribute Details
#discount ⇒ Object (readonly)
Returns the value of attribute discount.
40798 40799 40800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40798 def discount @discount end |
#duty ⇒ Object (readonly)
Returns the value of attribute duty.
40798 40799 40800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40798 def duty @duty end |
#item ⇒ Object (readonly)
Returns the value of attribute item.
40798 40799 40800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40798 def item @item end |
#price_attributes ⇒ Object (readonly)
Returns the value of attribute price_attributes.
40798 40799 40800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40798 def price_attributes @price_attributes end |
#quantity ⇒ Object (readonly)
Returns the value of attribute quantity.
40798 40799 40800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40798 def quantity @quantity end |
#tax ⇒ Object (readonly)
Returns the value of attribute tax.
40798 40799 40800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40798 def tax @tax end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
40798 40799 40800 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40798 def total @total end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
40816 40817 40818 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40816 def copy(incoming={}) OrderSummaryLineItem.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
40820 40821 40822 40823 40824 40825 40826 40827 40828 40829 40830 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40820 def to_hash { :item => item.to_hash, :quantity => quantity, :discount => discount.nil? ? nil : discount.to_hash, :tax => tax.nil? ? nil : tax.to_hash, :duty => duty.nil? ? nil : duty.to_hash, :total => total.to_hash, :price_attributes => price_attributes.inject({}) { |hash, o| hash[o[0]] = o[1].nil? ? nil : o[1].to_hash; hash } } end |
#to_json ⇒ Object
40812 40813 40814 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 40812 def to_json JSON.dump(to_hash) end |