Class: Io::Flow::V0::Models::CheckoutOptinResponsesUpserted

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 = {}) ⇒ 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_responsesObject (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_idObject (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

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

#timestampObject (readonly)

Returns the value of attribute timestamp.



36102
36103
36104
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36102

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



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

#to_jsonObject



36114
36115
36116
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36114

def to_json
  JSON.dump(to_hash)
end