=begin #openapi-ipify #OpenAPI client for ipify, a simple public IP address API The version of the OpenAPI document: 5.0.0 Contact: blah@cliffano.com Generated by: https://openapi-generator.tech OpenAPI Generator version: 7.0.0 =end require 'cgi' module OpenApiIpifyClient class DefaultApi attr_accessor :api_client def initialize(api_client = ApiClient.default) @api_client = api_client end # Get your public IP address # @param [Hash] opts the optional parameters # @option opts [String] :format Response format # @option opts [String] :callback JSONP callback function name # @return [Ip] def get_ip(opts = {}) data, _status_code, _headers = get_ip_with_http_info(opts) data end # Get your public IP address # @param [Hash] opts the optional parameters # @option opts [String] :format Response format # @option opts [String] :callback JSONP callback function name # @return [Array<(Ip, Integer, Hash)>] Ip data, response status code and response headers def get_ip_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: DefaultApi.get_ip ...' end allowable_values = ["json", "jsonp"] if @api_client.config.client_side_validation && opts[:'format'] && !allowable_values.include?(opts[:'format']) fail ArgumentError, "invalid value for \"format\", must be one of #{allowable_values}" end # resource path local_var_path = '/' # query parameters query_params = opts[:query_params] || {} query_params[:'format'] = opts[:'format'] if !opts[:'format'].nil? query_params[:'callback'] = opts[:'callback'] if !opts[:'callback'].nil? # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/javascript', 'text/plain']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'Ip' # auth_names auth_names = opts[:debug_auth_names] || [] new_options = opts.merge( :operation => :"DefaultApi.get_ip", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options) if @api_client.config.debugging @api_client.config.logger.debug "API called: DefaultApi#get_ip\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end end end