Class: Io::Flow::V0::Models::ReservationItemForm

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 = {}) ⇒ ReservationItemForm

Returns a new instance of ReservationItemForm.



36816
36817
36818
36819
36820
36821
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36816

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:item_number, :quantity], 'ReservationItemForm')
  @item_number = HttpClient::Preconditions.assert_class('item_number', opts.delete(:item_number), String)
  @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer)
end

Instance Attribute Details

#item_numberObject (readonly)

Returns the value of attribute item_number.



36814
36815
36816
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36814

def item_number
  @item_number
end

#quantityObject (readonly)

Returns the value of attribute quantity.



36814
36815
36816
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36814

def quantity
  @quantity
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



36827
36828
36829
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36827

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

#to_hashObject



36831
36832
36833
36834
36835
36836
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36831

def to_hash
  {
    :item_number => item_number,
    :quantity => quantity
  }
end

#to_jsonObject



36823
36824
36825
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36823

def to_json
  JSON.dump(to_hash)
end