class AsposeEmailCloud::ClientMessageSendFileRequest

Request model for client_message_send_file operation.

Attributes

account[RW]

Email account @return [String]

account_storage_folder[RW]

Folder in storage where account file located. @return [String]

file[RW]

File to send @return [File]

format[RW]

Email file format. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft @return [String]

storage[RW]

Storage name where account file located. @return [String]

Public Class Methods

new(account:, file:, storage: nil, account_storage_folder: nil, format: nil) click to toggle source

Send an email file.

@param [String] account Email account @param [File] file File to send @param [String] storage Storage name where account file located. @param [String] account_storage_folder Folder in storage where account file located. @param [String] format Email file format. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft

# File lib/aspose-email-cloud/models/client_message_send_file_request.rb, line 54
def initialize(account:, file:, storage: nil, account_storage_folder: nil, format: nil)
  self.account = account if account
  self.file = file if file
  self.storage = storage if storage
  self.account_storage_folder = account_storage_folder if account_storage_folder
  self.format = format if format
end

Public Instance Methods

to_http_info(api_client) click to toggle source
# File lib/aspose-email-cloud/models/client_message_send_file_request.rb, line 62
def to_http_info(api_client)
  # verify the required parameter 'account' is set
  if api_client.config.client_side_validation && self.account.nil?
    raise ArgumentError, "Missing the required parameter 'account' when calling ClientMessageApi.send_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 ClientMessageApi.send_file"
  end
  # resource path
  local_var_path = '/email/client/message/file'

  # query parameters
  query_params = {}
  query_params[:account] = self.account
  query_params[:storage] = self.storage unless self.storage.nil?
  query_params[:accountStorageFolder] = self.account_storage_folder unless self.account_storage_folder.nil?
  query_params[:format] = self.format unless self.format.nil?

  # 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