Class: Io::Flow::V0::Models::InventoryCheckResponse
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::InventoryCheckResponse
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#items ⇒ Object
readonly
Returns the value of attribute items.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ InventoryCheckResponse
constructor
A new instance of InventoryCheckResponse.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ InventoryCheckResponse
Returns a new instance of InventoryCheckResponse.
27631 27632 27633 27634 27635 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27631 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:items], 'InventoryCheckResponse') @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::InventoryCheckResponseItem) ? x : ::Io::Flow::V0::Models::InventoryCheckResponseItem.new(x)) } end |
Instance Attribute Details
#items ⇒ Object (readonly)
Returns the value of attribute items.
27629 27630 27631 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27629 def items @items end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
27641 27642 27643 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27641 def copy(incoming={}) InventoryCheckResponse.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
27645 27646 27647 27648 27649 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27645 def to_hash { :items => items.map { |o| o.to_hash } } end |
#to_json ⇒ Object
27637 27638 27639 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27637 def to_json JSON.dump(to_hash) end |