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.



45488
45489
45490
45491
45492
45493
45494
45495
45496
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45488

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.



45486
45487
45488
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45486

def country
  @country
end

#idObject (readonly)

Returns the value of attribute id.



45486
45487
45488
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45486

def id
  @id
end

#languageObject (readonly)

Returns the value of attribute language.



45486
45487
45488
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45486

def language
  @language
end

#nameObject (readonly)

Returns the value of attribute name.



45486
45487
45488
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45486

def name
  @name
end

#numbersObject (readonly)

Returns the value of attribute numbers.



45486
45487
45488
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45486

def numbers
  @numbers
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



45502
45503
45504
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45502

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

#to_hashObject



45506
45507
45508
45509
45510
45511
45512
45513
45514
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45506

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

#to_jsonObject



45498
45499
45500
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 45498

def to_json
  JSON.dump(to_hash)
end