Class: Io::Flow::V0::Clients::Countries
- Inherits:
-
Object
- Object
- Io::Flow::V0::Clients::Countries
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Method Summary collapse
-
#get(incoming = {}) ⇒ Object
Returns a list of countries.
-
#initialize(client) ⇒ Countries
constructor
A new instance of Countries.
Constructor Details
#initialize(client) ⇒ Countries
Returns a new instance of Countries.
5485 5486 5487 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5485 def initialize(client) @client = HttpClient::Preconditions.assert_class('client', client, ::Io::Flow::V0::Client) end |
Instance Method Details
#get(incoming = {}) ⇒ Object
Returns a list of countries.
5490 5491 5492 5493 5494 5495 5496 5497 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 5490 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/countries").with_query(query).get r.map { |x| ::Io::Flow::V0::Models::Country.new(x) } end |