Class: Io::Flow::V0::Models::BrowseOptinResponsesUpserted
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#browse_optin_responses ⇒ Object
readonly
Returns the value of attribute browse_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 = {}) ⇒ BrowseOptinResponsesUpserted
constructor
A new instance of BrowseOptinResponsesUpserted.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Event
Constructor Details
#initialize(incoming = {}) ⇒ BrowseOptinResponsesUpserted
Returns a new instance of BrowseOptinResponsesUpserted.
24156 24157 24158 24159 24160 24161 24162 24163 24164 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24156 def initialize(incoming={}) super(:discriminator => Event::Types::BROWSE_OPTIN_RESPONSES_UPSERTED) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :browse_optin_responses], 'BrowseOptinResponsesUpserted') @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) @browse_optin_responses = (x = opts.delete(:browse_optin_responses); x.is_a?(::Io::Flow::V0::Models::BrowseOptinResponses) ? x : ::Io::Flow::V0::Models::BrowseOptinResponses.new(x)) end |
Instance Attribute Details
#browse_optin_responses ⇒ Object (readonly)
Returns the value of attribute browse_optin_responses.
24154 24155 24156 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24154 def browse_optin_responses @browse_optin_responses end |
#event_id ⇒ Object (readonly)
Returns the value of attribute event_id.
24154 24155 24156 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24154 def event_id @event_id end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
24154 24155 24156 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24154 def organization @organization end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
24154 24155 24156 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24154 def @timestamp end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
24170 24171 24172 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24170 def copy(incoming={}) BrowseOptinResponsesUpserted.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
24174 24175 24176 24177 24178 24179 24180 24181 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24174 def subtype_to_hash { :event_id => event_id, :timestamp => , :organization => organization, :browse_optin_responses => browse_optin_responses.to_hash } end |
#to_json ⇒ Object
24166 24167 24168 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 24166 def to_json JSON.dump(to_hash) end |