Class: Io::Flow::V0::Models::PfsInventoryCheckResponse
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::PfsInventoryCheckResponse
- 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 = {}) ⇒ PfsInventoryCheckResponse
constructor
A new instance of PfsInventoryCheckResponse.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ PfsInventoryCheckResponse
Returns a new instance of PfsInventoryCheckResponse.
41742 41743 41744 41745 41746 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41742 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:items], 'PfsInventoryCheckResponse') @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Hash).inject({}) { |h, d| h[d[0]] = (x = d[1]; x.is_a?(::Io::Flow::V0::Models::PfsInventoryCheckResponseItem) ? x : ::Io::Flow::V0::Models::PfsInventoryCheckResponseItem.new(x)); h } end |
Instance Attribute Details
#items ⇒ Object (readonly)
Returns the value of attribute items.
41740 41741 41742 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41740 def items @items end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
41752 41753 41754 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41752 def copy(incoming={}) PfsInventoryCheckResponse.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
41756 41757 41758 41759 41760 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41756 def to_hash { :items => items.inject({}) { |hash, o| hash[o[0]] = o[1].nil? ? nil : o[1].to_hash; hash } } end |
#to_json ⇒ Object
41748 41749 41750 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 41748 def to_json JSON.dump(to_hash) end |