Class: Io::Flow::V0::Models::Locale

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

Overview

Locales defines standard conventions for presentation of content. See api.flow.io/reference/locales

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Locale

Returns a new instance of Locale.



28037
28038
28039
28040
28041
28042
28043
28044
28045
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28037

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :name, :country, :language, :numbers], 'Locale')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @name = HttpClient::Preconditions.assert_class('name', opts.delete(:name), String)
  @country = HttpClient::Preconditions.assert_class('country', opts.delete(:country), String)
  @language = HttpClient::Preconditions.assert_class('language', opts.delete(:language), String)
  @numbers = (x = opts.delete(:numbers); x.is_a?(::Io::Flow::V0::Models::LocaleNumbers) ? x : ::Io::Flow::V0::Models::LocaleNumbers.new(x))
end

Instance Attribute Details

#countryObject (readonly)

Returns the value of attribute country.



28035
28036
28037
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28035

def country
  @country
end

#idObject (readonly)

Returns the value of attribute id.



28035
28036
28037
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28035

def id
  @id
end

#languageObject (readonly)

Returns the value of attribute language.



28035
28036
28037
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28035

def language
  @language
end

#nameObject (readonly)

Returns the value of attribute name.



28035
28036
28037
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28035

def name
  @name
end

#numbersObject (readonly)

Returns the value of attribute numbers.



28035
28036
28037
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28035

def numbers
  @numbers
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



28051
28052
28053
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28051

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

#to_hashObject



28055
28056
28057
28058
28059
28060
28061
28062
28063
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28055

def to_hash
  {
    :id => id,
    :name => name,
    :country => country,
    :language => language,
    :numbers => numbers.to_hash
  }
end

#to_jsonObject



28047
28048
28049
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28047

def to_json
  JSON.dump(to_hash)
end