Class: Io::Flow::V0::Models::InventoryUpdate

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Represents a single update on inventory quantity

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ InventoryUpdate

Returns a new instance of InventoryUpdate.



43251
43252
43253
43254
43255
43256
43257
43258
43259
43260
43261
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43251

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :idempotency_key, :center, :item, :notes, :quantity, :type], 'InventoryUpdate')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @idempotency_key = HttpClient::Preconditions.assert_class('idempotency_key', opts.delete(:idempotency_key), String)
  @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))
  @notes = HttpClient::Preconditions.assert_class('notes', HttpClient::Helper.to_object(opts.delete(:notes)), Hash)
  @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer)
  @type = (x = opts.delete(:type); x.is_a?(::Io::Flow::V0::Models::UpdateType) ? x : ::Io::Flow::V0::Models::UpdateType.apply(x))
end

Instance Attribute Details

#centerObject (readonly)

Returns the value of attribute center.



43249
43250
43251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43249

def center
  @center
end

#idObject (readonly)

Returns the value of attribute id.



43249
43250
43251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43249

def id
  @id
end

#idempotency_keyObject (readonly)

Returns the value of attribute idempotency_key.



43249
43250
43251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43249

def idempotency_key
  @idempotency_key
end

#itemObject (readonly)

Returns the value of attribute item.



43249
43250
43251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43249

def item
  @item
end

#notesObject (readonly)

Returns the value of attribute notes.



43249
43250
43251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43249

def notes
  @notes
end

#quantityObject (readonly)

Returns the value of attribute quantity.



43249
43250
43251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43249

def quantity
  @quantity
end

#typeObject (readonly)

Returns the value of attribute type.



43249
43250
43251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43249

def type
  @type
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



43267
43268
43269
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43267

def copy(incoming={})
  InventoryUpdate.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



43271
43272
43273
43274
43275
43276
43277
43278
43279
43280
43281
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43271

def to_hash
  {
    :id => id,
    :idempotency_key => idempotency_key,
    :center => center.to_hash,
    :item => item.to_hash,
    :notes => notes,
    :quantity => quantity,
    :type => type.value
  }
end

#to_jsonObject



43263
43264
43265
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 43263

def to_json
  JSON.dump(to_hash)
end