class AsposeEmailCloud::MapiContactGetRequest
Request model for mapi_contact_get operation.
Attributes
file_name[RW]
Contact document file name. @return [String]
folder[RW]
Path to folder in storage. @return [String]
format[RW]
Contact document format. Enum, available values: VCard, WebDav, Msg @return [String]
storage[RW]
Storage name. @return [String]
Public Class Methods
new(format:, file_name:, folder: nil, storage: nil)
click to toggle source
Get MAPI contact document.
@param [String] format Contact document format. Enum, available values: VCard, WebDav, Msg @param [String] file_name
Contact document file name. @param [String] folder Path to folder in storage. @param [String] storage Storage name.
# File lib/aspose-email-cloud/models/mapi_contact_get_request.rb, line 50 def initialize(format:, file_name:, folder: nil, storage: nil) self.format = format if format self.file_name = file_name if file_name self.folder = folder if folder self.storage = storage if storage end
Public Instance Methods
to_http_info(api_client)
click to toggle source
# File lib/aspose-email-cloud/models/mapi_contact_get_request.rb, line 57 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 MapiContactApi.get" end # verify the required parameter 'file_name' is set if api_client.config.client_side_validation && self.file_name.nil? raise ArgumentError, "Missing the required parameter 'file_name' when calling MapiContactApi.get" end # resource path local_var_path = '/email/MapiContact' # query parameters query_params = {} query_params[:format] = self.format query_params[:fileName] = self.file_name query_params[:folder] = self.folder unless self.folder.nil? query_params[:storage] = self.storage unless self.storage.nil? # form parameters form_params = {} # 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(['application/json']) 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