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.



32962
32963
32964
32965
32966
32967
32968
32969
32970
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32962

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.



32960
32961
32962
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32960

def checkout_optin_responses
  @checkout_optin_responses
end

#event_idObject (readonly)

Returns the value of attribute event_id.



32960
32961
32962
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32960

def event_id
  @event_id
end

#organizationObject (readonly)

Returns the value of attribute organization.



32960
32961
32962
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32960

def organization
  @organization
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



32960
32961
32962
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32960

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



32976
32977
32978
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32976

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

#subtype_to_hashObject



32980
32981
32982
32983
32984
32985
32986
32987
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32980

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

#to_jsonObject



32972
32973
32974
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 32972

def to_json
  JSON.dump(to_hash)
end