Class: Io::Flow::V0::Models::OrderIdentifierForm

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

Returns a new instance of OrderIdentifierForm.



48243
48244
48245
48246
48247
48248
48249
48250
48251
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48243

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:order], 'OrderIdentifierForm')
  @order = HttpClient::Preconditions.assert_class('order', opts.delete(:order), String)
  @name = (x = opts.delete(:name); x.nil? ? nil : HttpClient::Preconditions.assert_class('name', x, String))
  @identifier = (x = opts.delete(:identifier); x.nil? ? nil : HttpClient::Preconditions.assert_class('identifier', x, String))
  @number = (x = opts.delete(:number); x.nil? ? nil : HttpClient::Preconditions.assert_class('number', x, String))
  @primary = (x = opts.delete(:primary); x.nil? ? nil : HttpClient::Preconditions.assert_boolean('primary', x))
end

Instance Attribute Details

#identifierObject (readonly)

Returns the value of attribute identifier.



48241
48242
48243
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48241

def identifier
  @identifier
end

#nameObject (readonly)

Returns the value of attribute name.



48241
48242
48243
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48241

def name
  @name
end

#numberObject (readonly)

Returns the value of attribute number.



48241
48242
48243
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48241

def number
  @number
end

#orderObject (readonly)

Returns the value of attribute order.



48241
48242
48243
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48241

def order
  @order
end

#primaryObject (readonly)

Returns the value of attribute primary.



48241
48242
48243
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48241

def primary
  @primary
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



48257
48258
48259
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48257

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

#to_hashObject



48261
48262
48263
48264
48265
48266
48267
48268
48269
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48261

def to_hash
  {
    :order => order,
    :name => name,
    :identifier => identifier,
    :number => number,
    :primary => primary
  }
end

#to_jsonObject



48253
48254
48255
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48253

def to_json
  JSON.dump(to_hash)
end