Class: AsposeEmailCloud::GetCalendarAttachmentRequestData

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

Overview

Request model for get_calendar_attachment operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, attachment, folder = nil, storage = nil) ⇒ GetCalendarAttachmentRequestData

Get iCalendar document attachment by name

Parameters:

  • name (String)

    iCalendar document file name

  • attachment (String)

    Attachment name or index

  • folder (String) (defaults to: nil)

    Path to folder in storage

  • storage (String) (defaults to: nil)

    Storage name



53
54
55
56
57
58
# File 'lib/aspose-email-cloud/models/requests/get_calendar_attachment_request_data.rb', line 53

def initialize(name, attachment, folder = nil, storage = nil)
  self.name = name if name
  self.attachment = attachment if attachment
  self.folder = folder if folder
  self.storage = storage if storage
end

Instance Attribute Details

#attachmentString

Attachment name or index

Returns:

  • (String)


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

def attachment
  @attachment
end

#folderString

Path to folder in storage

Returns:

  • (String)


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

def folder
  @folder
end

#nameString

iCalendar document file name

Returns:

  • (String)


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

def name
  @name
end

#storageString

Storage name

Returns:

  • (String)


46
47
48
# File 'lib/aspose-email-cloud/models/requests/get_calendar_attachment_request_data.rb', line 46

def storage
  @storage
end

Instance Method Details

#to_http_info(api_client) ⇒ Object



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
98
99
# File 'lib/aspose-email-cloud/models/requests/get_calendar_attachment_request_data.rb', line 60

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.get_calendar_attachment"
  end

  # verify the required parameter 'attachment' is set
  if api_client.config.client_side_validation && self.attachment.nil?
    raise ArgumentError, "Missing the required parameter 'attachment' when calling EmailApi.get_calendar_attachment"
  end

  # resource path
  local_var_path = '/email/Calendar/{name}/attachments/{attachment}'.sub('{' + 'name' + '}', self.name.to_s).sub('{' + 'attachment' + '}', self.attachment.to_s)

  # query parameters
  query_params = {}
  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)
  post_body = nil
  auth_names = ['JWT']

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = select_header_accept(['multipart/form-data'])
  # 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