Class: Io::Flow::V0::Models::OrderReplacementDeleted

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

Returns a new instance of OrderReplacementDeleted.



53879
53880
53881
53882
53883
53884
53885
53886
53887
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53879

def initialize(incoming={})
  super(:discriminator => Event::Types::ORDER_REPLACEMENT_DELETED)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :order_replacement], 'OrderReplacementDeleted')
  @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)
  @order_replacement = (x = opts.delete(:order_replacement); x.is_a?(::Io::Flow::V0::Models::OrderReplacement) ? x : ::Io::Flow::V0::Models::OrderReplacement.new(x))
end

Instance Attribute Details

#event_idObject (readonly)

Returns the value of attribute event_id.



53877
53878
53879
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53877

def event_id
  @event_id
end

#order_replacementObject (readonly)

Returns the value of attribute order_replacement.



53877
53878
53879
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53877

def order_replacement
  @order_replacement
end

#organizationObject (readonly)

Returns the value of attribute organization.



53877
53878
53879
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53877

def organization
  @organization
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



53877
53878
53879
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53877

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



53893
53894
53895
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53893

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

#subtype_to_hashObject



53897
53898
53899
53900
53901
53902
53903
53904
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53897

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

#to_jsonObject



53889
53890
53891
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53889

def to_json
  JSON.dump(to_hash)
end