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.
34748 34749 34750 34751 34752 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34748 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.
34746 34747 34748 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34746 def items @items end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
34758 34759 34760 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34758 def copy(incoming={}) InventoryCheckResponse.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
34762 34763 34764 34765 34766 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34762 def to_hash { :items => items.map { |o| o.to_hash } } end |
#to_json ⇒ Object
34754 34755 34756 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 34754 def to_json JSON.dump(to_hash) end |