class AsposeEmailCloud::ContactFromFileRequest
Request model for contact_from_file operation.
Attributes
file[RW]
File to convert @return [File]
format[RW]
File format. Enum, available values: VCard, WebDav, Msg @return [String]
Public Class Methods
new(format:, file:)
click to toggle source
Converts contact document to a model representation
@param [String] format File format. Enum, available values: VCard, WebDav, Msg @param [File] file File to convert
# File lib/aspose-email-cloud/models/contact_from_file_request.rb, line 42 def initialize(format:, file:) self.format = format if 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/contact_from_file_request.rb, line 47 def to_http_info(api_client) # verify the required parameter 'format' is set if api_client.config.client_side_validation && self.format.nil? raise ArgumentError, "Missing the required parameter 'format' when calling ContactApi.from_file" 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 ContactApi.from_file" end # resource path local_var_path = '/email/Contact/from-file' # query parameters query_params = {} query_params[:format] = self.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(['application/json']) # 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