Class: Io::Flow::V0::Models::QuoteLineItemForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::QuoteLineItemForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Line items and relevant attributes. Similar to common.line_item_form, but price is a money_with_optional_base
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#center ⇒ Object
readonly
Returns the value of attribute center.
-
#number ⇒ Object
readonly
Returns the value of attribute number.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
-
#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 = {}) ⇒ QuoteLineItemForm
constructor
A new instance of QuoteLineItemForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ QuoteLineItemForm
Returns a new instance of QuoteLineItemForm.
45598 45599 45600 45601 45602 45603 45604 45605 45606 45607 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45598 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:number, :quantity, :price], 'QuoteLineItemForm') @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String) @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer) @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 = (x = opts.delete(:price); x.is_a?(::Io::Flow::V0::Models::MoneyWithBase) ? x : ::Io::Flow::V0::Models::MoneyWithBase.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 }) @center = (x = opts.delete(:center); x.nil? ? nil : HttpClient::Preconditions.assert_class('center', x, String)) end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
45596 45597 45598 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45596 def attributes @attributes end |
#center ⇒ Object (readonly)
Returns the value of attribute center.
45596 45597 45598 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45596 def center @center end |
#number ⇒ Object (readonly)
Returns the value of attribute number.
45596 45597 45598 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45596 def number @number end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
45596 45597 45598 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45596 def price @price end |
#quantity ⇒ Object (readonly)
Returns the value of attribute quantity.
45596 45597 45598 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45596 def quantity @quantity end |
#shipment_estimate ⇒ Object (readonly)
Returns the value of attribute shipment_estimate.
45596 45597 45598 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45596 def shipment_estimate @shipment_estimate end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
45613 45614 45615 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45613 def copy(incoming={}) QuoteLineItemForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
45617 45618 45619 45620 45621 45622 45623 45624 45625 45626 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45617 def to_hash { :number => number, :quantity => quantity, :shipment_estimate => shipment_estimate.nil? ? nil : shipment_estimate.to_hash, :price => price.to_hash, :attributes => attributes.nil? ? nil : attributes, :center => center } end |
#to_json ⇒ Object
45609 45610 45611 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45609 def to_json JSON.dump(to_hash) end |