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.



30049
30050
30051
30052
30053
30054
30055
30056
30057
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30049

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.



30047
30048
30049
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30047

def browse_optin_responses
  @browse_optin_responses
end

#event_idObject (readonly)

Returns the value of attribute event_id.



30047
30048
30049
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30047

def event_id
  @event_id
end

#organizationObject (readonly)

Returns the value of attribute organization.



30047
30048
30049
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30047

def organization
  @organization
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



30047
30048
30049
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30047

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



30063
30064
30065
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30063

def copy(incoming={})
  BrowseOptinResponsesUpserted.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



30067
30068
30069
30070
30071
30072
30073
30074
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30067

def subtype_to_hash
  {
    :event_id => event_id,
    :timestamp => timestamp,
    :organization => organization,
    :browse_optin_responses => browse_optin_responses.to_hash
  }
end

#to_jsonObject



30059
30060
30061
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 30059

def to_json
  JSON.dump(to_hash)
end