Class: Io::Flow::V0::Models::OrderIdentifierPutForm

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

Returns a new instance of OrderIdentifierPutForm.



20485
20486
20487
20488
20489
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20485

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

Instance Attribute Details

#orderObject (readonly)

Returns the value of attribute order.



20483
20484
20485
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20483

def order
  @order
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



20495
20496
20497
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20495

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

#to_hashObject



20499
20500
20501
20502
20503
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20499

def to_hash
  {
    :order => order
  }
end

#to_jsonObject



20491
20492
20493
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20491

def to_json
  JSON.dump(to_hash)
end