Class: Io::Flow::V0::Models::LocalizedLineItem
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::LocalizedLineItem
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Line items on the order, with localized pricing information
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#center ⇒ Object
readonly
Returns the value of attribute center.
-
#discount ⇒ Object
readonly
Returns the value of attribute discount.
-
#discounts ⇒ Object
readonly
Returns the value of attribute discounts.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#local ⇒ Object
readonly
Returns the value of attribute local.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#number ⇒ Object
readonly
Returns the value of attribute number.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
-
#price_source ⇒ Object
readonly
Returns the value of attribute price_source.
-
#quantity ⇒ Object
readonly
Returns the value of attribute quantity.
-
#shipment_estimate ⇒ Object
readonly
Returns the value of attribute shipment_estimate.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ LocalizedLineItem
constructor
A new instance of LocalizedLineItem.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ LocalizedLineItem
Returns a new instance of LocalizedLineItem.
38713 38714 38715 38716 38717 38718 38719 38720 38721 38722 38723 38724 38725 38726 38727 38728 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38713 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:number, :name, :quantity, :local], 'LocalizedLineItem') @id = (x = opts.delete(:id); x.nil? ? nil : HttpClient::Preconditions.assert_class('id', x, String)) @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String) @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String) @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer) @center = (x = opts.delete(:center); x.nil? ? nil : HttpClient::Preconditions.assert_class('center', x, String)) @price = (x = opts.delete(:price); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x))) @discount = (x = opts.delete(:discount); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::LocalizedLineItemDiscount) ? x : ::Io::Flow::V0::Models::LocalizedLineItemDiscount.new(x))) @discounts = (x = opts.delete(:discounts); x.nil? ? nil : HttpClient::Preconditions.assert_class('discounts', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::LocalizedLineItemDiscount) ? x : ::Io::Flow::V0::Models::LocalizedLineItemDiscount.new(x)) }) @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h }) @local = (x = opts.delete(:local); x.is_a?(::Io::Flow::V0::Models::Local) ? x : ::Io::Flow::V0::Models::Local.new(x)) @shipment_estimate = (x = opts.delete(:shipment_estimate); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::DatetimeRange) ? x : ::Io::Flow::V0::Models::DatetimeRange.new(x))) @price_source = (x = opts.delete(:price_source); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::PriceSource) ? x : ::Io::Flow::V0::Models::PriceSource.from_json(x))) end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def attributes @attributes end |
#center ⇒ Object (readonly)
Returns the value of attribute center.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def center @center end |
#discount ⇒ Object (readonly)
Returns the value of attribute discount.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def discount @discount end |
#discounts ⇒ Object (readonly)
Returns the value of attribute discounts.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def discounts @discounts end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def id @id end |
#local ⇒ Object (readonly)
Returns the value of attribute local.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def local @local end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def name @name end |
#number ⇒ Object (readonly)
Returns the value of attribute number.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def number @number end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def price @price end |
#price_source ⇒ Object (readonly)
Returns the value of attribute price_source.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def price_source @price_source end |
#quantity ⇒ Object (readonly)
Returns the value of attribute quantity.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def quantity @quantity end |
#shipment_estimate ⇒ Object (readonly)
Returns the value of attribute shipment_estimate.
38711 38712 38713 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38711 def shipment_estimate @shipment_estimate end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
38734 38735 38736 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38734 def copy(incoming={}) LocalizedLineItem.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
38738 38739 38740 38741 38742 38743 38744 38745 38746 38747 38748 38749 38750 38751 38752 38753 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38738 def to_hash { :id => id, :number => number, :name => name, :quantity => quantity, :center => center, :price => price.nil? ? nil : price.to_hash, :discount => discount.nil? ? nil : discount.to_hash, :discounts => discounts.nil? ? nil : discounts.map { |o| o.to_hash }, :attributes => attributes.nil? ? nil : attributes, :local => local.to_hash, :shipment_estimate => shipment_estimate.nil? ? nil : shipment_estimate.to_hash, :price_source => price_source.nil? ? nil : price_source.to_hash } end |
#to_json ⇒ Object
38730 38731 38732 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 38730 def to_json JSON.dump(to_hash) end |