Class: Io::Flow::V0::Models::LocalSession

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

Overview

If we found an experience for the given session, the localized information will be presented here

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ LocalSession

Returns a new instance of LocalSession.



23515
23516
23517
23518
23519
23520
23521
23522
23523
23524
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23515

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:country, :currency, :language, :locale, :experience], 'LocalSession')
  @country = (x = opts.delete(:country); x.is_a?(::Io::Flow::V0::Models::Country) ? x : ::Io::Flow::V0::Models::Country.new(x))
  @currency = (x = opts.delete(:currency); x.is_a?(::Io::Flow::V0::Models::Currency) ? x : ::Io::Flow::V0::Models::Currency.new(x))
  @language = (x = opts.delete(:language); x.is_a?(::Io::Flow::V0::Models::Language) ? x : ::Io::Flow::V0::Models::Language.new(x))
  @locale = (x = opts.delete(:locale); x.is_a?(::Io::Flow::V0::Models::Locale) ? x : ::Io::Flow::V0::Models::Locale.new(x))
  @experience = (x = opts.delete(:experience); x.is_a?(::Io::Flow::V0::Models::ExperienceGeo) ? x : ::Io::Flow::V0::Models::ExperienceGeo.new(x))
  @experiment = (x = opts.delete(:experiment); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::SessionExperiment) ? x : ::Io::Flow::V0::Models::SessionExperiment.new(x)))
end

Instance Attribute Details

#countryObject (readonly)

Returns the value of attribute country.



23513
23514
23515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23513

def country
  @country
end

#currencyObject (readonly)

Returns the value of attribute currency.



23513
23514
23515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23513

def currency
  @currency
end

#experienceObject (readonly)

Returns the value of attribute experience.



23513
23514
23515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23513

def experience
  @experience
end

#experimentObject (readonly)

Returns the value of attribute experiment.



23513
23514
23515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23513

def experiment
  @experiment
end

#languageObject (readonly)

Returns the value of attribute language.



23513
23514
23515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23513

def language
  @language
end

#localeObject (readonly)

Returns the value of attribute locale.



23513
23514
23515
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23513

def locale
  @locale
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



23530
23531
23532
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23530

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

#to_hashObject



23534
23535
23536
23537
23538
23539
23540
23541
23542
23543
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23534

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

#to_jsonObject



23526
23527
23528
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23526

def to_json
  JSON.dump(to_hash)
end