Class: AsposeEmailCloud::MapiContactGetRequest

Inherits:
EmailRequest
  • Object
show all
Defined in:
lib/aspose-email-cloud/models/mapi_contact_get_request.rb

Overview

Request model for mapi_contact_get operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from EmailRequest

select_header_accept, select_header_content_type

Constructor Details

#initialize(format:, file_name:, folder: nil, storage: nil) ⇒ MapiContactGetRequest

Get MAPI contact document.

Parameters:

  • format (String)

    Contact document format. Enum, available values: VCard, WebDav, Msg

  • file_name (String)

    Contact document file name.

  • folder (String) (defaults to: nil)

    Path to folder in storage.

  • storage (String) (defaults to: nil)

    Storage name.



50
51
52
53
54
55
# 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

Instance Attribute Details

#file_nameString

Contact document file name.

Returns:

  • (String)


37
38
39
# File 'lib/aspose-email-cloud/models/mapi_contact_get_request.rb', line 37

def file_name
  @file_name
end

#folderString

Path to folder in storage.

Returns:

  • (String)


40
41
42
# File 'lib/aspose-email-cloud/models/mapi_contact_get_request.rb', line 40

def folder
  @folder
end

#formatString

Contact document format. Enum, available values: VCard, WebDav, Msg

Returns:

  • (String)


34
35
36
# File 'lib/aspose-email-cloud/models/mapi_contact_get_request.rb', line 34

def format
  @format
end

#storageString

Storage name.

Returns:

  • (String)


43
44
45
# File 'lib/aspose-email-cloud/models/mapi_contact_get_request.rb', line 43

def storage
  @storage
end

Instance Method Details

#to_http_info(api_client) ⇒ Object



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/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