Class: Io::Flow::V0::Models::InventoryRequest
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::InventoryRequest
- 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 = {}) ⇒ InventoryRequest
constructor
A new instance of InventoryRequest.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ InventoryRequest
Returns a new instance of InventoryRequest.
46247 46248 46249 46250 46251 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46247 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:items], 'InventoryRequest') @items = HttpClient::Preconditions.assert_class('items', opts.delete(:items), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::InventoryRequestItem) ? x : ::Io::Flow::V0::Models::InventoryRequestItem.new(x)) } end |
Instance Attribute Details
#items ⇒ Object (readonly)
Returns the value of attribute items.
46245 46246 46247 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46245 def items @items end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
46257 46258 46259 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46257 def copy(incoming={}) InventoryRequest.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
46261 46262 46263 46264 46265 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46261 def to_hash { :items => items.map { |o| o.to_hash } } end |
#to_json ⇒ Object
46253 46254 46255 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46253 def to_json JSON.dump(to_hash) end |