Class: Io::Flow::V0::Models::OrderReplacementDeleted
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#event_id ⇒ Object
readonly
Returns the value of attribute event_id.
-
#order_replacement ⇒ Object
readonly
Returns the value of attribute order_replacement.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
-
#timestamp ⇒ Object
readonly
Returns the value of attribute timestamp.
Attributes inherited from Event
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ OrderReplacementDeleted
constructor
A new instance of OrderReplacementDeleted.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Event
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_id ⇒ Object (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_replacement ⇒ Object (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 |
#organization ⇒ Object (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 |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
53877 53878 53879 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53877 def @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_hash ⇒ Object
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 => , :organization => organization, :order_replacement => order_replacement.to_hash } end |
#to_json ⇒ Object
53889 53890 53891 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 53889 def to_json JSON.dump(to_hash) end |