Class: Io::Flow::V0::Models::OrderIdentifierUpsertedV3

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

Instance Attribute Summary collapse

Attributes inherited from Event

#discriminator

Instance Method Summary collapse

Methods inherited from Event

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ OrderIdentifierUpsertedV3

Returns a new instance of OrderIdentifierUpsertedV3.



48383
48384
48385
48386
48387
48388
48389
48390
48391
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48383

def initialize(incoming={})
  super(:discriminator => Event::Types::ORDER_IDENTIFIER_UPSERTED_V3)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :identifier], 'OrderIdentifierUpsertedV3')
  @event_id = HttpClient::Preconditions.assert_class('event_id', opts.delete(:event_id), String)
  @timestamp = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime)
  @organization = HttpClient::Preconditions.assert_class('organization', opts.delete(:organization), String)
  @identifier = (x = opts.delete(:identifier); x.is_a?(::Io::Flow::V0::Models::OrderIdentifier) ? x : ::Io::Flow::V0::Models::OrderIdentifier.new(x))
end

Instance Attribute Details

#event_idObject (readonly)

Returns the value of attribute event_id.



48381
48382
48383
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48381

def event_id
  @event_id
end

#identifierObject (readonly)

Returns the value of attribute identifier.



48381
48382
48383
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48381

def identifier
  @identifier
end

#organizationObject (readonly)

Returns the value of attribute organization.



48381
48382
48383
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48381

def organization
  @organization
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



48381
48382
48383
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48381

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



48397
48398
48399
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48397

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

#subtype_to_hashObject



48401
48402
48403
48404
48405
48406
48407
48408
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48401

def subtype_to_hash
  {
    :event_id => event_id,
    :timestamp => timestamp,
    :organization => organization,
    :identifier => identifier.to_hash
  }
end

#to_jsonObject



48393
48394
48395
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 48393

def to_json
  JSON.dump(to_hash)
end