class AsposeEmailCloud::EmailConvertRequest
Request model for email_convert operation.
Attributes
file[RW]
File to convert @return [File]
from_format[RW]
File format to convert from. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft @return [String]
to_format[RW]
File format to convert to. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft @return [String]
Public Class Methods
new(from_format:, to_format:, file:)
click to toggle source
Converts email document to specified format and returns as file
@param [String] from_format
File format to convert from. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft @param [String] to_format
File format to convert to. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft @param [File] file File to convert
# File lib/aspose-email-cloud/models/email_convert_request.rb, line 46 def initialize(from_format:, to_format:, file:) self.from_format = from_format if from_format self.to_format = to_format if to_format self.file = file if file end
Public Instance Methods
to_http_info(api_client)
click to toggle source
# File lib/aspose-email-cloud/models/email_convert_request.rb, line 52 def to_http_info(api_client) # verify the required parameter 'from_format' is set if api_client.config.client_side_validation && self.from_format.nil? raise ArgumentError, "Missing the required parameter 'from_format' when calling EmailApi.convert" end # verify the required parameter 'to_format' is set if api_client.config.client_side_validation && self.to_format.nil? raise ArgumentError, "Missing the required parameter 'to_format' when calling EmailApi.convert" end # verify the required parameter 'file' is set if api_client.config.client_side_validation && self.file.nil? raise ArgumentError, "Missing the required parameter 'file' when calling EmailApi.convert" end # resource path local_var_path = '/email/convert' # query parameters query_params = {} query_params[:fromFormat] = self.from_format query_params[:toFormat] = self.to_format # form parameters form_params = {} form_params['File'] = self.file # http body (model) auth_names = ['JWT'] # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = EmailRequest.select_header_accept(['multipart/form-data']) # HTTP header 'Content-Type' header_params['Content-Type'] = form_params.any? ? 'multipart/form-data' : EmailRequest.select_header_content_type(['multipart/form-data']) AsposeEmailCloud::HttpRequest.new(resource_path: local_var_path, header_params: header_params, query_params: query_params, form_params: form_params, auth_names: auth_names) end