Class: Io::Flow::V0::Models::NoInventoryReservationErrorItem

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ NoInventoryReservationErrorItem

Returns a new instance of NoInventoryReservationErrorItem.



46965
46966
46967
46968
46969
46970
46971
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46965

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:number, :requested_quantity, :available_quantity], 'NoInventoryReservationErrorItem')
  @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String)
  @requested_quantity = HttpClient::Preconditions.assert_class('requested_quantity', opts.delete(:requested_quantity), Integer)
  @available_quantity = HttpClient::Preconditions.assert_class('available_quantity', opts.delete(:available_quantity), Integer)
end

Instance Attribute Details

#available_quantityObject (readonly)

Returns the value of attribute available_quantity.



46963
46964
46965
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46963

def available_quantity
  @available_quantity
end

#numberObject (readonly)

Returns the value of attribute number.



46963
46964
46965
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46963

def number
  @number
end

#requested_quantityObject (readonly)

Returns the value of attribute requested_quantity.



46963
46964
46965
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46963

def requested_quantity
  @requested_quantity
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



46977
46978
46979
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46977

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

#to_hashObject



46981
46982
46983
46984
46985
46986
46987
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46981

def to_hash
  {
    :number => number,
    :requested_quantity => requested_quantity,
    :available_quantity => available_quantity
  }
end

#to_jsonObject



46973
46974
46975
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 46973

def to_json
  JSON.dump(to_hash)
end