Class: Bfwd::SearchApi
- Inherits:
-
Object
- Object
- Bfwd::SearchApi
- Defined in:
- lib/bf_ruby2/api/search_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#initialize(api_client = ApiClient.default) ⇒ SearchApi
constructor
A new instance of SearchApi.
-
#perform_search(query_string, opts = {}) ⇒ SearchResultPagedMetadata
Returns the results of the global search specified by the query-string.
-
#perform_search_with_http_info(query_string, opts = {}) ⇒ Array<(SearchResultPagedMetadata, Fixnum, Hash)>
Returns the results of the global search specified by the query-string.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ SearchApi
Returns a new instance of SearchApi.
19 20 21 |
# File 'lib/bf_ruby2/api/search_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/bf_ruby2/api/search_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#perform_search(query_string, opts = {}) ⇒ SearchResultPagedMetadata
Returns the results of the global search specified by the query-string. an organizations data","response":"getSearchByID.html"
34 35 36 37 |
# File 'lib/bf_ruby2/api/search_api.rb', line 34 def perform_search(query_string, opts = {}) data, _status_code, _headers = perform_search_with_http_info(query_string, opts) return data end |
#perform_search_with_http_info(query_string, opts = {}) ⇒ Array<(SearchResultPagedMetadata, Fixnum, Hash)>
Returns the results of the global search specified by the query-string. an organizations data","response":"getSearchByID.html"
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 |
# File 'lib/bf_ruby2/api/search_api.rb', line 50 def perform_search_with_http_info(query_string, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: SearchApi.perform_search ..." end # verify the required parameter 'query_string' is set if @api_client.config.client_side_validation && query_string.nil? fail ArgumentError, "Missing the required parameter 'query_string' when calling SearchApi.perform_search" end # resource path local_var_path = "/search/{query-string}".sub('{' + 'query-string' + '}', query_string.to_s) # query parameters query_params = {} query_params[:'organizations'] = @api_client.build_collection_param(opts[:'organizations'], :multi) if !opts[:'organizations'].nil? query_params[:'types'] = @api_client.build_collection_param(opts[:'types'], :multi) if !opts[:'types'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'records'] = opts[:'records'] if !opts[:'records'].nil? query_params[:'wildcard'] = opts[:'wildcard'] if !opts[:'wildcard'].nil? query_params[:'entity'] = opts[:'entity'] if !opts[:'entity'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json; charset=utf-8']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['text/plain']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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 => 'SearchResultPagedMetadata') if @api_client.config.debugging @api_client.config.logger.debug "API called: SearchApi#perform_search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |