Class: Io::Flow::Reference::V0::Clients::Locales
- Inherits:
-
Object
- Object
- Io::Flow::Reference::V0::Clients::Locales
- Defined in:
- lib/flow_reference_v0_client.rb
Instance Method Summary collapse
-
#get(incoming = {}) ⇒ Object
Returns a list of locales.
-
#get_by_id(id) ⇒ Object
Returns the locale with the specifed id.
-
#initialize(client) ⇒ Locales
constructor
A new instance of Locales.
Constructor Details
#initialize(client) ⇒ Locales
Returns a new instance of Locales.
159 160 161 |
# File 'lib/flow_reference_v0_client.rb', line 159 def initialize(client) @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::Reference::V0::Client) end |
Instance Method Details
#get(incoming = {}) ⇒ Object
Returns a list of locales.
164 165 166 167 168 169 170 171 |
# File 'lib/flow_reference_v0_client.rb', line 164 def get(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) query = { :q => (x = opts.delete(:q); x.nil? ? nil : HttpClient::Preconditions.assert_class('q', x, String)) }.delete_if { |k, v| v.nil? } r = @client.request("/reference/locales").with_query(query).get r.map { |x| ::Io::Flow::Reference::V0::Models::Locale.new(x) } end |
#get_by_id(id) ⇒ Object
Returns the locale with the specifed id.
174 175 176 177 178 |
# File 'lib/flow_reference_v0_client.rb', line 174 def get_by_id(id) HttpClient::Preconditions.assert_class('id', id, String) r = @client.request("/reference/locales/#{CGI.escape(id)}").get ::Io::Flow::Reference::V0::Models::Locale.new(r) end |