Class: Io::Flow::V0::Models::InventorySnapshot
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::InventorySnapshot
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Inventory snapshot reflects the current quantity and available number of units for a given center / item
Instance Attribute Summary collapse
-
#available ⇒ Object
readonly
Returns the value of attribute available.
-
#center ⇒ Object
readonly
Returns the value of attribute center.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#item ⇒ Object
readonly
Returns the value of attribute item.
-
#quantity ⇒ Object
readonly
Returns the value of attribute quantity.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ InventorySnapshot
constructor
A new instance of InventorySnapshot.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ InventorySnapshot
Returns a new instance of InventorySnapshot.
46399 46400 46401 46402 46403 46404 46405 46406 46407 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46399 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :available, :center, :item, :quantity], 'InventorySnapshot') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @available = HttpClient::Preconditions.assert_class('available', opts.delete(:available), Integer) @center = (x = opts.delete(:center); x.is_a?(::Io::Flow::V0::Models::InventoryCenterReference) ? x : ::Io::Flow::V0::Models::InventoryCenterReference.new(x)) @item = (x = opts.delete(:item); x.is_a?(::Io::Flow::V0::Models::InventoryItemReference) ? x : ::Io::Flow::V0::Models::InventoryItemReference.new(x)) @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer) end |
Instance Attribute Details
#available ⇒ Object (readonly)
Returns the value of attribute available.
46397 46398 46399 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46397 def available @available end |
#center ⇒ Object (readonly)
Returns the value of attribute center.
46397 46398 46399 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46397 def center @center end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
46397 46398 46399 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46397 def id @id end |
#item ⇒ Object (readonly)
Returns the value of attribute item.
46397 46398 46399 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46397 def item @item end |
#quantity ⇒ Object (readonly)
Returns the value of attribute quantity.
46397 46398 46399 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46397 def quantity @quantity end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
46413 46414 46415 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46413 def copy(incoming={}) InventorySnapshot.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
46417 46418 46419 46420 46421 46422 46423 46424 46425 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46417 def to_hash { :id => id, :available => available, :center => center.to_hash, :item => item.to_hash, :quantity => quantity } end |
#to_json ⇒ Object
46409 46410 46411 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46409 def to_json JSON.dump(to_hash) end |