Class: Io::Flow::V0::Models::Line
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Line
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Provides display data for a line item.
Instance Attribute Summary collapse
-
#item_number ⇒ Object
readonly
Returns the value of attribute item_number.
-
#price ⇒ Object
readonly
Returns the value of attribute price.
-
#quantity ⇒ Object
readonly
Returns the value of attribute quantity.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Line
constructor
A new instance of Line.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Line
Returns a new instance of Line.
15501 15502 15503 15504 15505 15506 15507 15508 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15501 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:item_number, :quantity, :price, :total], 'Line') @item_number = HttpClient::Preconditions.assert_class('item_number', opts.delete(:item_number), String) @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer) @price = (x = opts.delete(:price); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)) @total = (x = opts.delete(:total); x.is_a?(::Io::Flow::V0::Models::Price) ? x : ::Io::Flow::V0::Models::Price.new(x)) end |
Instance Attribute Details
#item_number ⇒ Object (readonly)
Returns the value of attribute item_number.
15499 15500 15501 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15499 def item_number @item_number end |
#price ⇒ Object (readonly)
Returns the value of attribute price.
15499 15500 15501 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15499 def price @price end |
#quantity ⇒ Object (readonly)
Returns the value of attribute quantity.
15499 15500 15501 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15499 def quantity @quantity end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
15499 15500 15501 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15499 def total @total end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
15514 15515 15516 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15514 def copy(incoming={}) Line.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
15518 15519 15520 15521 15522 15523 15524 15525 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15518 def to_hash { :item_number => item_number, :quantity => quantity, :price => price.to_hash, :total => total.to_hash } end |
#to_json ⇒ Object
15510 15511 15512 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15510 def to_json JSON.dump(to_hash) end |