Class: AsposeEmailCloud::AddMapiAttachmentRequestData
- Inherits:
-
EmailRequest
- Object
- EmailRequest
- AsposeEmailCloud::AddMapiAttachmentRequestData
- Defined in:
- lib/aspose-email-cloud/models/requests/add_mapi_attachment_request_data.rb
Overview
Request model for add_mapi_attachment operation.
Instance Attribute Summary collapse
-
#attachment ⇒ String
Attachment file name.
-
#name ⇒ String
Document file name.
-
#request ⇒ AddAttachmentRequest
Add attachment request.
Instance Method Summary collapse
-
#initialize(name, attachment, request) ⇒ AddMapiAttachmentRequestData
constructor
Add attachment to document.
- #to_http_info(api_client) ⇒ Object
Constructor Details
#initialize(name, attachment, request) ⇒ AddMapiAttachmentRequestData
Add attachment to document
49 50 51 52 53 |
# File 'lib/aspose-email-cloud/models/requests/add_mapi_attachment_request_data.rb', line 49 def initialize(name, , request) self.name = name if name self. = if self.request = request if request end |
Instance Attribute Details
#attachment ⇒ String
Attachment file name
40 41 42 |
# File 'lib/aspose-email-cloud/models/requests/add_mapi_attachment_request_data.rb', line 40 def @attachment end |
#name ⇒ String
Document file name
37 38 39 |
# File 'lib/aspose-email-cloud/models/requests/add_mapi_attachment_request_data.rb', line 37 def name @name end |
#request ⇒ AddAttachmentRequest
Add attachment request
43 44 45 |
# File 'lib/aspose-email-cloud/models/requests/add_mapi_attachment_request_data.rb', line 43 def request @request 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 95 96 97 |
# File 'lib/aspose-email-cloud/models/requests/add_mapi_attachment_request_data.rb', line 55 def to_http_info(api_client) # verify the required parameter 'name' is set if api_client.config.client_side_validation && self.name.nil? raise ArgumentError, "Missing the required parameter 'name' when calling EmailApi.add_mapi_attachment" end # verify the required parameter 'attachment' is set if api_client.config.client_side_validation && self..nil? raise ArgumentError, "Missing the required parameter 'attachment' when calling EmailApi.add_mapi_attachment" end # verify the required parameter 'request' is set if api_client.config.client_side_validation && self.request.nil? raise ArgumentError, "Missing the required parameter 'request' when calling EmailApi.add_mapi_attachment" end # resource path local_var_path = '/email/Mapi/{name}/attachments/{attachment}'.sub('{' + 'name' + '}', self.name.to_s).sub('{' + 'attachment' + '}', self..to_s) # query parameters query_params = {} # form parameters form_params = {} # http body (model) post_body = api_client.object_to_http_body(self.request) 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']) AsposeEmailCloud::HttpRequest.new(local_var_path, header_params, query_params, form_params, post_body, auth_names) end |