Class: Io::Flow::V0::Models::SnapshotDeleted

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

Returns a new instance of SnapshotDeleted.



63560
63561
63562
63563
63564
63565
63566
63567
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63560

def initialize(incoming={})
  super(:discriminator => Event::Types::SNAPSHOT_DELETED)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :snapshot_id], 'SnapshotDeleted')
  @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)
  @snapshot_id = HttpClient::Preconditions.assert_class('snapshot_id', opts.delete(:snapshot_id), String)
end

Instance Attribute Details

#event_idObject (readonly)

Returns the value of attribute event_id.



63558
63559
63560
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63558

def event_id
  @event_id
end

#snapshot_idObject (readonly)

Returns the value of attribute snapshot_id.



63558
63559
63560
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63558

def snapshot_id
  @snapshot_id
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



63558
63559
63560
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63558

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



63573
63574
63575
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63573

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

#subtype_to_hashObject



63577
63578
63579
63580
63581
63582
63583
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63577

def subtype_to_hash
  {
    :event_id => event_id,
    :timestamp => timestamp,
    :snapshot_id => snapshot_id
  }
end

#to_jsonObject



63569
63570
63571
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63569

def to_json
  JSON.dump(to_hash)
end