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.
19245 19246 19247 19248 19249 19250 19251 19252 19253 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19245 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.
19243 19244 19245 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19243 def browse_optin_responses @browse_optin_responses end |
#event_id ⇒ Object (readonly)
Returns the value of attribute event_id.
19243 19244 19245 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19243 def event_id @event_id end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
19243 19244 19245 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19243 def organization @organization end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
19243 19244 19245 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19243 def @timestamp end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
19259 19260 19261 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19259 def copy(incoming={}) BrowseOptinResponsesUpserted.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
19263 19264 19265 19266 19267 19268 19269 19270 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19263 def subtype_to_hash { :event_id => event_id, :timestamp => , :organization => organization, :browse_optin_responses => browse_optin_responses.to_hash } end |
#to_json ⇒ Object
19255 19256 19257 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19255 def to_json JSON.dump(to_hash) end |