Class: Io::Flow::V0::Models::CheckoutOptinResponsesUpserted
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#checkout_optin_responses ⇒ Object
readonly
Returns the value of attribute checkout_optin_responses.
-
#event_id ⇒ Object
readonly
Returns the value of attribute event_id.
-
#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 = {}) ⇒ CheckoutOptinResponsesUpserted
constructor
A new instance of CheckoutOptinResponsesUpserted.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Event
Constructor Details
#initialize(incoming = {}) ⇒ CheckoutOptinResponsesUpserted
Returns a new instance of CheckoutOptinResponsesUpserted.
36104 36105 36106 36107 36108 36109 36110 36111 36112 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36104 def initialize(incoming={}) super(:discriminator => Event::Types::CHECKOUT_OPTIN_RESPONSES_UPSERTED) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :checkout_optin_responses], 'CheckoutOptinResponsesUpserted') @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) @checkout_optin_responses = (x = opts.delete(:checkout_optin_responses); x.is_a?(::Io::Flow::V0::Models::CheckoutOptinResponses) ? x : ::Io::Flow::V0::Models::CheckoutOptinResponses.new(x)) end |
Instance Attribute Details
#checkout_optin_responses ⇒ Object (readonly)
Returns the value of attribute checkout_optin_responses.
36102 36103 36104 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36102 def checkout_optin_responses @checkout_optin_responses end |
#event_id ⇒ Object (readonly)
Returns the value of attribute event_id.
36102 36103 36104 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36102 def event_id @event_id end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
36102 36103 36104 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36102 def organization @organization end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
36102 36103 36104 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36102 def @timestamp end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
36118 36119 36120 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36118 def copy(incoming={}) CheckoutOptinResponsesUpserted.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
36122 36123 36124 36125 36126 36127 36128 36129 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36122 def subtype_to_hash { :event_id => event_id, :timestamp => , :organization => organization, :checkout_optin_responses => checkout_optin_responses.to_hash } end |
#to_json ⇒ Object
36114 36115 36116 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36114 def to_json JSON.dump(to_hash) end |