Class: Io::Flow::V0::Models::SnapshotUpserted
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#available ⇒ Object
readonly
Returns the value of attribute available.
-
#center_key ⇒ Object
readonly
Returns the value of attribute center_key.
-
#event_id ⇒ Object
readonly
Returns the value of attribute event_id.
-
#item_number ⇒ Object
readonly
Returns the value of attribute item_number.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
-
#quantity ⇒ Object
readonly
Returns the value of attribute quantity.
-
#snapshot_id ⇒ Object
readonly
Returns the value of attribute snapshot_id.
-
#timestamp ⇒ Object
readonly
Returns the value of attribute timestamp.
Attributes inherited from Event
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ SnapshotUpserted
constructor
A new instance of SnapshotUpserted.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Event
Constructor Details
#initialize(incoming = {}) ⇒ SnapshotUpserted
Returns a new instance of SnapshotUpserted.
39906 39907 39908 39909 39910 39911 39912 39913 39914 39915 39916 39917 39918 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39906 def initialize(incoming={}) super(:discriminator => Event::Types::SNAPSHOT_UPSERTED) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :snapshot_id, :available, :center_key, :item_number, :quantity], 'SnapshotUpserted') @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) @snapshot_id = HttpClient::Preconditions.assert_class('snapshot_id', opts.delete(:snapshot_id), String) @available = HttpClient::Preconditions.assert_class('available', opts.delete(:available), Integer) @center_key = HttpClient::Preconditions.assert_class('center_key', opts.delete(:center_key), String) @item_number = HttpClient::Preconditions.assert_class('item_number', opts.delete(:item_number), String) @quantity = HttpClient::Preconditions.assert_class('quantity', opts.delete(:quantity), Integer) end |
Instance Attribute Details
#available ⇒ Object (readonly)
Returns the value of attribute available.
39904 39905 39906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39904 def available @available end |
#center_key ⇒ Object (readonly)
Returns the value of attribute center_key.
39904 39905 39906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39904 def center_key @center_key end |
#event_id ⇒ Object (readonly)
Returns the value of attribute event_id.
39904 39905 39906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39904 def event_id @event_id end |
#item_number ⇒ Object (readonly)
Returns the value of attribute item_number.
39904 39905 39906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39904 def item_number @item_number end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
39904 39905 39906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39904 def organization @organization end |
#quantity ⇒ Object (readonly)
Returns the value of attribute quantity.
39904 39905 39906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39904 def quantity @quantity end |
#snapshot_id ⇒ Object (readonly)
Returns the value of attribute snapshot_id.
39904 39905 39906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39904 def snapshot_id @snapshot_id end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
39904 39905 39906 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39904 def @timestamp end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
39924 39925 39926 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39924 def copy(incoming={}) SnapshotUpserted.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
39928 39929 39930 39931 39932 39933 39934 39935 39936 39937 39938 39939 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39928 def subtype_to_hash { :event_id => event_id, :timestamp => , :organization => organization, :snapshot_id => snapshot_id, :available => available, :center_key => center_key, :item_number => item_number, :quantity => quantity } end |
#to_json ⇒ Object
39920 39921 39922 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 39920 def to_json JSON.dump(to_hash) end |