Class: Io::Flow::V0::Models::SessionForm

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ SessionForm

Returns a new instance of SessionForm.



26468
26469
26470
26471
26472
26473
26474
26475
26476
26477
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26468

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  @ip = (x = opts.delete(:ip); x.nil? ? nil : HttpClient::Preconditions.assert_class('ip', x, String))
  @experience = (x = opts.delete(:experience); x.nil? ? nil : HttpClient::Preconditions.assert_class('experience', x, String))
  @country = (x = opts.delete(:country); x.nil? ? nil : HttpClient::Preconditions.assert_class('country', x, String))
  @currency = (x = opts.delete(:currency); x.nil? ? nil : HttpClient::Preconditions.assert_class('currency', x, String))
  @language = (x = opts.delete(:language); x.nil? ? nil : HttpClient::Preconditions.assert_class('language', x, String))
  @locale = (x = opts.delete(:locale); x.nil? ? nil : HttpClient::Preconditions.assert_class('locale', x, String))
  @attributes = (x = opts.delete(:attributes); x.nil? ? nil : HttpClient::Preconditions.assert_class('attributes', x, Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h })
end

Instance Attribute Details

#attributesObject (readonly)

Returns the value of attribute attributes.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def attributes
  @attributes
end

#countryObject (readonly)

Returns the value of attribute country.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def country
  @country
end

#currencyObject (readonly)

Returns the value of attribute currency.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def currency
  @currency
end

#experienceObject (readonly)

Returns the value of attribute experience.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def experience
  @experience
end

#ipObject (readonly)

Returns the value of attribute ip.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def ip
  @ip
end

#languageObject (readonly)

Returns the value of attribute language.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def language
  @language
end

#localeObject (readonly)

Returns the value of attribute locale.



26466
26467
26468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26466

def locale
  @locale
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



26483
26484
26485
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26483

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

#to_hashObject



26487
26488
26489
26490
26491
26492
26493
26494
26495
26496
26497
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26487

def to_hash
  {
    :ip => ip,
    :experience => experience,
    :country => country,
    :currency => currency,
    :language => language,
    :locale => locale,
    :attributes => attributes.nil? ? nil : attributes
  }
end

#to_jsonObject



26479
26480
26481
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26479

def to_json
  JSON.dump(to_hash)
end