Class: AsposeImagingCloud::CreateImageSearchRequest
- Inherits:
-
ImagingRequest
- Object
- ImagingRequest
- AsposeImagingCloud::CreateImageSearchRequest
- Defined in:
- lib/aspose-imaging-cloud/models/requests/create_image_search_request.rb
Overview
Request model for create_image_search operation.
Instance Method Summary collapse
-
#initialize(detector = nil, matching_algorithm = nil, folder = nil, storage = nil) ⇒ CreateImageSearchRequest
constructor
Create new search context.
- #to_http_info(config) ⇒ Object
Constructor Details
#initialize(detector = nil, matching_algorithm = nil, folder = nil, storage = nil) ⇒ CreateImageSearchRequest
Create new search context.
39 40 41 42 43 44 |
# File 'lib/aspose-imaging-cloud/models/requests/create_image_search_request.rb', line 39 def initialize(detector = nil, matching_algorithm = nil, folder = nil, storage = nil) @detector = detector @matching_algorithm = matching_algorithm @folder = folder @storage = storage end |
Instance Method Details
#to_http_info(config) ⇒ Object
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 |
# File 'lib/aspose-imaging-cloud/models/requests/create_image_search_request.rb', line 46 def to_http_info(config) # resource path local_var_path = '/imaging/ai/imageSearch/create' # query parameters query_params = {} query_params[:detector] = @detector unless @detector.nil? query_params[:matchingAlgorithm] = @matching_algorithm unless @matching_algorithm.nil? query_params[:folder] = @folder unless @folder.nil? query_params[:storage] = @storage unless @storage.nil? # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['JWT'] # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = form_params.any? ? 'multipart/form-data' : select_header_content_type(['application/json']) AsposeImagingCloud::HttpRequest.new(local_var_path, header_params, query_params, form_params, post_body, auth_names) end |