Class: AsposeEmailCloud::UploadFileRequestData
- Inherits:
-
EmailRequest
- Object
- EmailRequest
- AsposeEmailCloud::UploadFileRequestData
- Defined in:
- lib/aspose-email-cloud/models/requests/upload_file_request_data.rb
Overview
Request model for upload_file operation.
Instance Attribute Summary collapse
-
#file ⇒ File
File to upload.
-
#path ⇒ String
Path where to upload including filename and extension e.g.
-
#storage_name ⇒ String
Storage name.
Instance Method Summary collapse
-
#initialize(path, file, storage_name = nil) ⇒ UploadFileRequestData
constructor
Upload file.
- #to_http_info(api_client) ⇒ Object
Constructor Details
#initialize(path, file, storage_name = nil) ⇒ UploadFileRequestData
Upload file
49 50 51 52 53 |
# File 'lib/aspose-email-cloud/models/requests/upload_file_request_data.rb', line 49 def initialize(path, file, storage_name = nil) self.path = path if path self.file = file if file self.storage_name = storage_name if storage_name end |
Instance Attribute Details
#file ⇒ File
File to upload
40 41 42 |
# File 'lib/aspose-email-cloud/models/requests/upload_file_request_data.rb', line 40 def file @file end |
#path ⇒ String
Path where to upload including filename and extension e.g. /file.ext or /Folder 1/file.ext If the content is multipart and path does not contains the file name it tries to get them from filename parameter from Content-Disposition header.
37 38 39 |
# File 'lib/aspose-email-cloud/models/requests/upload_file_request_data.rb', line 37 def path @path end |
#storage_name ⇒ String
Storage name
43 44 45 |
# File 'lib/aspose-email-cloud/models/requests/upload_file_request_data.rb', line 43 def storage_name @storage_name end |
Instance Method Details
#to_http_info(api_client) ⇒ Object
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 |
# File 'lib/aspose-email-cloud/models/requests/upload_file_request_data.rb', line 55 def to_http_info(api_client) # verify the required parameter 'path' is set if api_client.config.client_side_validation && self.path.nil? raise ArgumentError, "Missing the required parameter 'path' when calling EmailApi.upload_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 EmailApi.upload_file" end # resource path local_var_path = '/email/storage/file/{path}'.sub('{' + 'path' + '}', self.path.to_s) # query parameters query_params = {} query_params[:storageName] = self.storage_name unless self.storage_name.nil? # form parameters form_params = {} form_params['File'] = self.file # 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(['multipart/form-data']) AsposeEmailCloud::HttpRequest.new(local_var_path, header_params, query_params, form_params, post_body, auth_names) end |