class AsposeImagingCloud::CreateImageSearchRequest
Request model for create_image_search operation.
Public Class Methods
new(detector = nil, matching_algorithm = nil, folder = nil, storage = nil)
click to toggle source
Create new search context. @param [String] detector The image features detector. @param [String] matching_algorithm The matching algorithm. @param [String] folder The folder. @param [String] storage The storage.
# 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
Public Instance Methods
to_http_info(config)
click to toggle source
# 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