Class: AsposeImagingCloud::FilterEffectImageRequest
- Inherits:
-
ImagingRequest
- Object
- ImagingRequest
- AsposeImagingCloud::FilterEffectImageRequest
- Defined in:
- lib/aspose-imaging-cloud/models/requests/filter_effect_image_request.rb
Overview
Request model for filter_effect_image operation.
Instance Method Summary collapse
-
#initialize(name, filter_type, filter_properties, format = nil, folder = nil, storage = nil) ⇒ FilterEffectImageRequest
constructor
Apply filtering effects to an existing image.
- #to_http_info(config) ⇒ Object
Constructor Details
#initialize(name, filter_type, filter_properties, format = nil, folder = nil, storage = nil) ⇒ FilterEffectImageRequest
Apply filtering effects to an existing image.
41 42 43 44 45 46 47 48 |
# File 'lib/aspose-imaging-cloud/models/requests/filter_effect_image_request.rb', line 41 def initialize(name, filter_type, filter_properties, format = nil, folder = nil, storage = nil) @name = name @filter_type = filter_type @filter_properties = filter_properties @format = format @folder = folder @storage = storage end |
Instance Method Details
#to_http_info(config) ⇒ Object
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 |
# File 'lib/aspose-imaging-cloud/models/requests/filter_effect_image_request.rb', line 50 def to_http_info(config) # verify the required parameter 'name' is set if config.client_side_validation && @name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling ImagingApi.filter_effect_image" end # verify the required parameter 'filter_type' is set if config.client_side_validation && @filter_type.nil? raise ArgumentError, "Missing the required parameter 'filter_type' when calling ImagingApi.filter_effect_image" end # verify the required parameter 'filter_properties' is set if config.client_side_validation && @filter_properties.nil? raise ArgumentError, "Missing the required parameter 'filter_properties' when calling ImagingApi.filter_effect_image" end # resource path local_var_path = '/imaging/{name}/filterEffect'.sub('{' + 'name' + '}', @name.to_s) # query parameters query_params = {} query_params[:filterType] = @filter_type query_params[:format] = @format unless @format.nil? query_params[:folder] = @folder unless @folder.nil? query_params[:storage] = @storage unless @storage.nil? # form parameters form_params = {} # http body (model) post_body = object_to_http_body(@filter_properties) 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', 'application/xml']) AsposeImagingCloud::HttpRequest.new(local_var_path, header_params, query_params, form_params, post_body, auth_names) end |