Class: Io::Flow::V0::Models::BrowseOptinResponsesUpserted

Inherits:
Event
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Attributes inherited from Event

#discriminator

Instance Method Summary collapse

Methods inherited from Event

from_json, #to_hash

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_responsesObject (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_idObject (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

#organizationObject (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

#timestampObject (readonly)

Returns the value of attribute timestamp.



19243
19244
19245
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19243

def timestamp
  @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_hashObject



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 => timestamp,
    :organization => organization,
    :browse_optin_responses => browse_optin_responses.to_hash
  }
end

#to_jsonObject



19255
19256
19257
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 19255

def to_json
  JSON.dump(to_hash)
end