Class: SamplifyAPIClient::CountriesApi
- Inherits:
-
Object
- Object
- SamplifyAPIClient::CountriesApi
- Defined in:
- lib/samplify_api_client/api/countries_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#countries_list(opts = {}) ⇒ Countries
list countries.
-
#countries_list_with_http_info(opts = {}) ⇒ Array<(Countries, Fixnum, Hash)>
list countries.
-
#initialize(api_client = ApiClient.default) ⇒ CountriesApi
constructor
A new instance of CountriesApi.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ CountriesApi
Returns a new instance of CountriesApi.
19 20 21 |
# File 'lib/samplify_api_client/api/countries_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/samplify_api_client/api/countries_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#countries_list(opts = {}) ⇒ Countries
list countries
31 32 33 34 |
# File 'lib/samplify_api_client/api/countries_api.rb', line 31 def countries_list(opts = {}) data, _status_code, _headers = countries_list_with_http_info(opts) data end |
#countries_list_with_http_info(opts = {}) ⇒ Array<(Countries, Fixnum, Hash)>
list countries
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/samplify_api_client/api/countries_api.rb', line 45 def countries_list_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: CountriesApi.countries_list ...' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] > 1000 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling CountriesApi.countries_list, must be smaller than or equal to 1000.' end if @api_client.config.client_side_validation && !opts[:'limit'].nil? && opts[:'limit'] < 1 fail ArgumentError, 'invalid value for "opts[:"limit"]" when calling CountriesApi.countries_list, must be greater than or equal to 1.' end if @api_client.config.client_side_validation && !opts[:'offset'].nil? && opts[:'offset'] < 0 fail ArgumentError, 'invalid value for "opts[:"offset"]" when calling CountriesApi.countries_list, must be greater than or equal to 0.' end # resource path local_var_path = '/sample/v1/countries' # query parameters query_params = {} query_params[:'countryName'] = opts[:'country_name'] if !opts[:'country_name'].nil? query_params[:'id'] = opts[:'id'] if !opts[:'id'].nil? query_params[:'isoCode'] = opts[:'iso_code'] if !opts[:'iso_code'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'sort'] = @api_client.build_collection_param(opts[:'sort'], :multi) if !opts[:'sort'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/vnd.countries+json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json', 'application/xml', 'application/gob', 'application/x-gob']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['jwt'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Countries') if @api_client.config.debugging @api_client.config.logger.debug "API called: CountriesApi#countries_list\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |