Class: Io::Flow::V0::Models::OrderIdentifier

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

Overview

Represents alternate numbers with which to identify an order.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ OrderIdentifier

Returns a new instance of OrderIdentifier.



21748
21749
21750
21751
21752
21753
21754
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21748

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :order, :number], 'OrderIdentifier')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @order = (x = opts.delete(:order); x.is_a?(::Io::Flow::V0::Models::OrderReference) ? x : ::Io::Flow::V0::Models::OrderReference.new(x))
  @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String)
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



21746
21747
21748
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21746

def id
  @id
end

#numberObject (readonly)

Returns the value of attribute number.



21746
21747
21748
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21746

def number
  @number
end

#orderObject (readonly)

Returns the value of attribute order.



21746
21747
21748
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21746

def order
  @order
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



21760
21761
21762
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21760

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

#to_hashObject



21764
21765
21766
21767
21768
21769
21770
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21764

def to_hash
  {
    :id => id,
    :order => order.to_hash,
    :number => number
  }
end

#to_jsonObject



21756
21757
21758
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21756

def to_json
  JSON.dump(to_hash)
end