aspose_email_cloud 21.4.0 → 21.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/lib/aspose-email-cloud/models/ai_name_component.rb +56 -0
  3. data/lib/aspose-email-cloud/models/calendar_as_file_request.rb +2 -2
  4. data/lib/aspose-email-cloud/models/calendar_dto.rb +33 -5
  5. data/lib/aspose-email-cloud/models/calendar_get_as_alternate_request.rb +2 -2
  6. data/lib/aspose-email-cloud/models/calendar_save_request.rb +2 -2
  7. data/lib/aspose-email-cloud/models/client_message_fetch_request.rb +2 -2
  8. data/lib/aspose-email-cloud/models/client_message_list_request.rb +2 -2
  9. data/lib/aspose-email-cloud/models/client_message_send_file_request.rb +2 -2
  10. data/lib/aspose-email-cloud/models/contact_convert_request.rb +4 -4
  11. data/lib/aspose-email-cloud/models/contact_from_file_request.rb +2 -2
  12. data/lib/aspose-email-cloud/models/contact_get_as_file_request.rb +4 -4
  13. data/lib/aspose-email-cloud/models/email_account_config.rb +2 -2
  14. data/lib/aspose-email-cloud/models/email_client_account.rb +2 -2
  15. data/lib/aspose-email-cloud/models/email_convert_request.rb +4 -4
  16. data/lib/aspose-email-cloud/models/email_dto.rb +23 -5
  17. data/lib/aspose-email-cloud/models/email_from_file_request.rb +2 -2
  18. data/lib/aspose-email-cloud/models/email_get_as_file_request.rb +2 -2
  19. data/lib/aspose-email-cloud/models/mapi_calendar_as_file_request.rb +2 -2
  20. data/lib/aspose-email-cloud/models/mapi_calendar_daily_recurrence_pattern_dto.rb +8 -8
  21. data/lib/aspose-email-cloud/models/mapi_calendar_dto.rb +4 -4
  22. data/lib/aspose-email-cloud/models/mapi_calendar_exception_info_dto.rb +4 -4
  23. data/lib/aspose-email-cloud/models/mapi_calendar_recurrence_pattern_dto.rb +6 -6
  24. data/lib/aspose-email-cloud/models/mapi_calendar_save_request.rb +2 -2
  25. data/lib/aspose-email-cloud/models/mapi_calendar_time_zone_info_dto.rb +2 -2
  26. data/lib/aspose-email-cloud/models/mapi_calendar_weekly_recurrence_pattern_dto.rb +8 -8
  27. data/lib/aspose-email-cloud/models/mapi_calendar_yearly_and_monthly_recurrence_pattern_dto.rb +8 -8
  28. data/lib/aspose-email-cloud/models/mapi_contact_from_file_request.rb +2 -2
  29. data/lib/aspose-email-cloud/models/mapi_contact_personal_info_property_set_dto.rb +2 -2
  30. data/lib/aspose-email-cloud/models/mapi_message_from_file_request.rb +2 -2
  31. data/lib/aspose-email-cloud/models/mapi_pid_lid_property_descriptor.rb +2 -2
  32. data/lib/aspose-email-cloud/models/mapi_pid_name_property_descriptor.rb +2 -2
  33. data/lib/aspose-email-cloud/models/mapi_pid_property_descriptor.rb +2 -2
  34. data/lib/aspose-email-cloud/models/mapi_pid_tag_property_descriptor.rb +2 -2
  35. data/lib/aspose-email-cloud/version.rb +1 -1
  36. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af4f01b0ed681cc4f8919e8b97eb964a3eb9effccae48919e4de64df2b8f4239
4
- data.tar.gz: '07268e260e5ab75d5b895d37853d7b5eb9ca77457032925d183d0e6ede3dd8df'
3
+ metadata.gz: 1a7678727bef799179854a3909b2dacbe1153b0085581dea88fe2e003d5d1014
4
+ data.tar.gz: 67a0468e37c2ee2d055744348567f5b39188c7093e1208f59c2b365e72222cc9
5
5
  SHA512:
6
- metadata.gz: 257da5077ce1c84e2292712986232d780c2615a8be66674a07603ce3c4e324e877be133811bbeeab7edb4b1cce75bcfd0a6b56012f0015dfa670f3a9f3771d09
7
- data.tar.gz: a942f89bfe647dd2315e564ad7413584293efdea5a51d635a456b755cb12b9f1f523dd5096a5f538b386e6aca7f064743362d1e096d974f41e84be0780b9d8b0
6
+ metadata.gz: cbbf68e6b085e51bd0e41a8b0b5bdfcc504f57911b4948f375dd126d94912e7a8f3662ae5c4efa81def597cc7a6d1963dddb5c5e37ffc02d1f732230f10d4118
7
+ data.tar.gz: 1ac541ae416269dfc4dfde9f2b129063823f089a97344b168231d4bf0b85ab943b219f24391e5e2b2bb021e0669dfd617ed9ca82f5594272a41b43a4a50a8de6
@@ -88,10 +88,26 @@ module AsposeEmailCloud
88
88
  invalid_properties.push('invalid value for "score", score cannot be nil.')
89
89
  end
90
90
 
91
+ if @score > 1.0
92
+ invalid_properties.push('invalid value for "score", must be smaller than or equal to 1.0.')
93
+ end
94
+
95
+ if @score < 0.0
96
+ invalid_properties.push('invalid value for "score", must be greater than or equal to 0.0.')
97
+ end
98
+
91
99
  if @position.nil?
92
100
  invalid_properties.push('invalid value for "position", position cannot be nil.')
93
101
  end
94
102
 
103
+ if @position > 2147483647
104
+ invalid_properties.push('invalid value for "position", must be smaller than or equal to 2147483647.')
105
+ end
106
+
107
+ if @position < 0
108
+ invalid_properties.push('invalid value for "position", must be greater than or equal to 0.')
109
+ end
110
+
95
111
  invalid_properties
96
112
  end
97
113
 
@@ -100,10 +116,50 @@ module AsposeEmailCloud
100
116
  def valid?
101
117
  return false if @category.nil?
102
118
  return false if @score.nil?
119
+ return false if @score > 1.0
120
+ return false if @score < 0.0
103
121
  return false if @position.nil?
122
+ return false if @position > 2147483647
123
+ return false if @position < 0
104
124
  true
105
125
  end
106
126
 
127
+ # Custom attribute writer method with validation
128
+ # @param [Object] score Value to be assigned
129
+ def score=(score)
130
+ if score.nil?
131
+ fail ArgumentError, 'score cannot be nil'
132
+ end
133
+
134
+ if score > 1.0
135
+ fail ArgumentError, 'invalid value for "score", must be smaller than or equal to 1.0.'
136
+ end
137
+
138
+ if score < 0.0
139
+ fail ArgumentError, 'invalid value for "score", must be greater than or equal to 0.0.'
140
+ end
141
+
142
+ @score = score
143
+ end
144
+
145
+ # Custom attribute writer method with validation
146
+ # @param [Object] position Value to be assigned
147
+ def position=(position)
148
+ if position.nil?
149
+ fail ArgumentError, 'position cannot be nil'
150
+ end
151
+
152
+ if position > 2147483647
153
+ fail ArgumentError, 'invalid value for "position", must be smaller than or equal to 2147483647.'
154
+ end
155
+
156
+ if position < 0
157
+ fail ArgumentError, 'invalid value for "position", must be greater than or equal to 0.'
158
+ end
159
+
160
+ @position = position
161
+ end
162
+
107
163
  # Checks equality by comparing each attribute.
108
164
  # @param [Object] Object to be compared
109
165
  def ==(o)
@@ -28,7 +28,7 @@ require 'date'
28
28
  module AsposeEmailCloud
29
29
  # iCalendar model to file request.
30
30
  class CalendarAsFileRequest
31
- # Calendar file format Enum, available values: Ics, Msg
31
+ # Calendar file format. Enum, available values: Ics, Msg
32
32
  # @return [String]
33
33
  attr_accessor :format
34
34
  # iCalendar model
@@ -51,7 +51,7 @@ module AsposeEmailCloud
51
51
  end
52
52
 
53
53
  # Initializes the object
54
- # @param [String] format Calendar file format Enum, available values: Ics, Msg
54
+ # @param [String] format Calendar file format. Enum, available values: Ics, Msg
55
55
  # @param [CalendarDto] value iCalendar model
56
56
  def initialize(
57
57
  format: nil,
@@ -94,6 +94,12 @@ module AsposeEmailCloud
94
94
  # Specifies whether or not this appointment is intended to be visible in availability searches. Enum, available values: NotDefined, Transparent, Opaque
95
95
  # @return [String]
96
96
  attr_accessor :transparency
97
+ # Defines the access classification for the calendar. Enum, available values: Public, Private, Confidential, NotDefined
98
+ # @return [String]
99
+ attr_accessor :_class
100
+ # Specifies the importance of a calendar object. Enum, available values: Low, Normal, High, NotDefined
101
+ # @return [String]
102
+ attr_accessor :microsoft_importance
97
103
  # Attribute mapping from ruby-style variable name to JSON key.
98
104
  def self.attribute_map
99
105
  {
@@ -118,7 +124,9 @@ module AsposeEmailCloud
118
124
  :'start_time_zone' => :'startTimeZone',
119
125
  :'status' => :'status',
120
126
  :'summary' => :'summary',
121
- :'transparency' => :'transparency'
127
+ :'transparency' => :'transparency',
128
+ :'_class' => :'class',
129
+ :'microsoft_importance' => :'microsoftImportance'
122
130
  }
123
131
  end
124
132
 
@@ -146,7 +154,9 @@ module AsposeEmailCloud
146
154
  :'start_time_zone' => :'String',
147
155
  :'status' => :'String',
148
156
  :'summary' => :'String',
149
- :'transparency' => :'String'
157
+ :'transparency' => :'String',
158
+ :'_class' => :'String',
159
+ :'microsoft_importance' => :'String'
150
160
  }
151
161
  end
152
162
 
@@ -173,6 +183,8 @@ module AsposeEmailCloud
173
183
  # @param [String] status Defines the overall status or confirmation for the calendar document. Enum, available values: NotDefined, Cancelled, Tentative, Confirmed
174
184
  # @param [String] summary Summary.
175
185
  # @param [String] transparency Specifies whether or not this appointment is intended to be visible in availability searches. Enum, available values: NotDefined, Transparent, Opaque
186
+ # @param [String] _class Defines the access classification for the calendar. Enum, available values: Public, Private, Confidential, NotDefined
187
+ # @param [String] microsoft_importance Specifies the importance of a calendar object. Enum, available values: Low, Normal, High, NotDefined
176
188
  def initialize(
177
189
  attachments: nil,
178
190
  attendees: nil,
@@ -195,7 +207,9 @@ module AsposeEmailCloud
195
207
  start_time_zone: nil,
196
208
  status: nil,
197
209
  summary: nil,
198
- transparency: nil)
210
+ transparency: nil,
211
+ _class: nil,
212
+ microsoft_importance: nil)
199
213
  self.attachments = attachments if attachments
200
214
  self.attendees = attendees if attendees
201
215
  self.description = description if description
@@ -218,6 +232,8 @@ module AsposeEmailCloud
218
232
  self.status = status if status
219
233
  self.summary = summary if summary
220
234
  self.transparency = transparency if transparency
235
+ self._class = _class if _class
236
+ self.microsoft_importance = microsoft_importance if microsoft_importance
221
237
  end
222
238
 
223
239
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -272,6 +288,14 @@ module AsposeEmailCloud
272
288
  invalid_properties.push('invalid value for "transparency", transparency cannot be nil.')
273
289
  end
274
290
 
291
+ if @_class.nil?
292
+ invalid_properties.push('invalid value for "_class", _class cannot be nil.')
293
+ end
294
+
295
+ if @microsoft_importance.nil?
296
+ invalid_properties.push('invalid value for "microsoft_importance", microsoft_importance cannot be nil.')
297
+ end
298
+
275
299
  invalid_properties
276
300
  end
277
301
 
@@ -290,6 +314,8 @@ module AsposeEmailCloud
290
314
  return false if @start_date.nil?
291
315
  return false if @status.nil?
292
316
  return false if @transparency.nil?
317
+ return false if @_class.nil?
318
+ return false if @microsoft_importance.nil?
293
319
  true
294
320
  end
295
321
 
@@ -333,7 +359,9 @@ module AsposeEmailCloud
333
359
  start_time_zone == o.start_time_zone &&
334
360
  status == o.status &&
335
361
  summary == o.summary &&
336
- transparency == o.transparency
362
+ transparency == o.transparency &&
363
+ _class == o._class &&
364
+ microsoft_importance == o.microsoft_importance
337
365
  end
338
366
 
339
367
  # @see the `==` method
@@ -345,7 +373,7 @@ module AsposeEmailCloud
345
373
  # Calculates hash code according to all attributes.
346
374
  # @return [Fixnum] Hash code
347
375
  def hash
348
- [attachments, attendees, description, end_date, end_time_zone, flags, is_description_html, location, method, microsoft_busy_status, microsoft_intended_status, optional_attendees, organizer, recurrence_string, recurrence, reminders, sequence_id, start_date, start_time_zone, status, summary, transparency].hash
376
+ [attachments, attendees, description, end_date, end_time_zone, flags, is_description_html, location, method, microsoft_busy_status, microsoft_intended_status, optional_attendees, organizer, recurrence_string, recurrence, reminders, sequence_id, start_date, start_time_zone, status, summary, transparency, _class, microsoft_importance].hash
349
377
  end
350
378
 
351
379
  # Builds the object from hash
@@ -32,7 +32,7 @@ module AsposeEmailCloud
32
32
  # iCalendar file name in storage
33
33
  # @return [String]
34
34
  attr_accessor :file_name
35
- # iCalendar method type Enum, available values: Create, Update, Cancel
35
+ # iCalendar method type. Enum, available values: Create, Update, Cancel
36
36
  # @return [String]
37
37
  attr_accessor :calendar_action
38
38
  # The sequence id
@@ -47,7 +47,7 @@ module AsposeEmailCloud
47
47
 
48
48
  # Get iCalendar from storage as AlternateView
49
49
  # @param [String] file_name iCalendar file name in storage
50
- # @param [String] calendar_action iCalendar method type Enum, available values: Create, Update, Cancel
50
+ # @param [String] calendar_action iCalendar method type. Enum, available values: Create, Update, Cancel
51
51
  # @param [String] sequence_id The sequence id
52
52
  # @param [String] folder Path to folder in storage
53
53
  # @param [String] storage Storage name
@@ -34,7 +34,7 @@ module AsposeEmailCloud
34
34
 
35
35
  # @return [CalendarDto]
36
36
  attr_accessor :value
37
- # Calendar file format Enum, available values: Ics, Msg
37
+ # Calendar file format. Enum, available values: Ics, Msg
38
38
  # @return [String]
39
39
  attr_accessor :format
40
40
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -58,7 +58,7 @@ module AsposeEmailCloud
58
58
  # Initializes the object
59
59
  # @param [StorageFileLocation] storage_file
60
60
  # @param [CalendarDto] value
61
- # @param [String] format Calendar file format Enum, available values: Ics, Msg
61
+ # @param [String] format Calendar file format. Enum, available values: Ics, Msg
62
62
  def initialize(
63
63
  storage_file: nil,
64
64
  value: nil,
@@ -44,7 +44,7 @@ module AsposeEmailCloud
44
44
  # Folder in storage where account file located.
45
45
  # @return [String]
46
46
  attr_accessor :account_storage_folder
47
- # MailMessageBase type. Using this property you can fetch message in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
47
+ # MailMessageBase type. Using this property you can fetch message in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
48
48
  # @return [String]
49
49
  attr_accessor :type
50
50
  # Base64 data format. Used only if type is set to Base64. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
@@ -57,7 +57,7 @@ module AsposeEmailCloud
57
57
  # @param [String] folder Account folder to fetch from (should be specified for some protocols such as IMAP)
58
58
  # @param [String] storage Storage name where account file located.
59
59
  # @param [String] account_storage_folder Folder in storage where account file located.
60
- # @param [String] type MailMessageBase type. Using this property you can fetch message in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
60
+ # @param [String] type MailMessageBase type. Using this property you can fetch message in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
61
61
  # @param [String] format Base64 data format. Used only if type is set to Base64. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
62
62
  def initialize(message_id:, account:, folder: nil, storage: nil, account_storage_folder: nil, type: nil, format: nil)
63
63
  self.message_id = message_id if message_id
@@ -47,7 +47,7 @@ module AsposeEmailCloud
47
47
  # Specifies that should message be searched in subfolders recursively
48
48
  # @return [BOOLEAN]
49
49
  attr_accessor :recursive
50
- # MailMessageBase type. Using this property you can get messages in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
50
+ # MailMessageBase type. Using this property you can get messages in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
51
51
  # @return [String]
52
52
  attr_accessor :type
53
53
  # Base64 data format. Used only if type is set to Base64. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
@@ -62,7 +62,7 @@ module AsposeEmailCloud
62
62
  # @param [String] storage Storage name where account file located
63
63
  # @param [String] account_storage_folder Folder in storage where account file located
64
64
  # @param [BOOLEAN] recursive Specifies that should message be searched in subfolders recursively
65
- # @param [String] type MailMessageBase type. Using this property you can get messages in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
65
+ # @param [String] type MailMessageBase type. Using this property you can get messages in different formats (as EmailDto, MapiMessageDto or a file represented as Base64 string). Enum, available values: Dto, Mapi, Base64
66
66
  # @param [String] format Base64 data format. Used only if type is set to Base64. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
67
67
  def initialize(folder:, account:, query_string: nil, storage: nil, account_storage_folder: nil, recursive: nil, type: nil, format: nil)
68
68
  self.folder = folder if folder
@@ -41,7 +41,7 @@ module AsposeEmailCloud
41
41
  # Folder in storage where account file located.
42
42
  # @return [String]
43
43
  attr_accessor :account_storage_folder
44
- # Email file format Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
44
+ # Email file format. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
45
45
  # @return [String]
46
46
  attr_accessor :format
47
47
 
@@ -50,7 +50,7 @@ module AsposeEmailCloud
50
50
  # @param [File] file File to send
51
51
  # @param [String] storage Storage name where account file located.
52
52
  # @param [String] account_storage_folder Folder in storage where account file located.
53
- # @param [String] format Email file format Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
53
+ # @param [String] format Email file format. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
54
54
  def initialize(account:, file:, storage: nil, account_storage_folder: nil, format: nil)
55
55
  self.account = account if account
56
56
  self.file = file if file
@@ -29,10 +29,10 @@ require_relative './http_request'
29
29
  module AsposeEmailCloud
30
30
  # Request model for contact_convert operation.
31
31
  class ContactConvertRequest < EmailRequest
32
- # File format to convert to Enum, available values: VCard, WebDav, Msg
32
+ # File format to convert to. Enum, available values: VCard, WebDav, Msg
33
33
  # @return [String]
34
34
  attr_accessor :to_format
35
- # File format to convert from Enum, available values: VCard, WebDav, Msg
35
+ # File format to convert from. Enum, available values: VCard, WebDav, Msg
36
36
  # @return [String]
37
37
  attr_accessor :from_format
38
38
  # File to convert
@@ -40,8 +40,8 @@ module AsposeEmailCloud
40
40
  attr_accessor :file
41
41
 
42
42
  # Converts contact document to specified format and returns as file
43
- # @param [String] to_format File format to convert to Enum, available values: VCard, WebDav, Msg
44
- # @param [String] from_format File format to convert from Enum, available values: VCard, WebDav, Msg
43
+ # @param [String] to_format File format to convert to. Enum, available values: VCard, WebDav, Msg
44
+ # @param [String] from_format File format to convert from. Enum, available values: VCard, WebDav, Msg
45
45
  # @param [File] file File to convert
46
46
  def initialize(to_format:, from_format:, file:)
47
47
  self.to_format = to_format if to_format
@@ -29,7 +29,7 @@ require_relative './http_request'
29
29
  module AsposeEmailCloud
30
30
  # Request model for contact_from_file operation.
31
31
  class ContactFromFileRequest < EmailRequest
32
- # File format Enum, available values: VCard, WebDav, Msg
32
+ # File format. Enum, available values: VCard, WebDav, Msg
33
33
  # @return [String]
34
34
  attr_accessor :format
35
35
  # File to convert
@@ -37,7 +37,7 @@ module AsposeEmailCloud
37
37
  attr_accessor :file
38
38
 
39
39
  # Converts contact document to a model representation
40
- # @param [String] format File format Enum, available values: VCard, WebDav, Msg
40
+ # @param [String] format File format. Enum, available values: VCard, WebDav, Msg
41
41
  # @param [File] file File to convert
42
42
  def initialize(format:, file:)
43
43
  self.format = format if format
@@ -32,10 +32,10 @@ module AsposeEmailCloud
32
32
  # Calendar document file name
33
33
  # @return [String]
34
34
  attr_accessor :file_name
35
- # File format Enum, available values: VCard, WebDav, Msg
35
+ # File format. Enum, available values: VCard, WebDav, Msg
36
36
  # @return [String]
37
37
  attr_accessor :to_format
38
- # File format to convert from Enum, available values: VCard, WebDav, Msg
38
+ # File format to convert from. Enum, available values: VCard, WebDav, Msg
39
39
  # @return [String]
40
40
  attr_accessor :from_format
41
41
  # Storage name
@@ -47,8 +47,8 @@ module AsposeEmailCloud
47
47
 
48
48
  # Converts contact document from storage to specified format and returns as file
49
49
  # @param [String] file_name Calendar document file name
50
- # @param [String] to_format File format Enum, available values: VCard, WebDav, Msg
51
- # @param [String] from_format File format to convert from Enum, available values: VCard, WebDav, Msg
50
+ # @param [String] to_format File format. Enum, available values: VCard, WebDav, Msg
51
+ # @param [String] from_format File format to convert from. Enum, available values: VCard, WebDav, Msg
52
52
  # @param [String] storage Storage name
53
53
  # @param [String] folder Path to folder in storage
54
54
  def initialize(file_name:, to_format:, from_format:, storage: nil, folder: nil)
@@ -40,7 +40,7 @@ module AsposeEmailCloud
40
40
  # Port.
41
41
  # @return [Integer]
42
42
  attr_accessor :port
43
- # Email account security mode Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
43
+ # Email account security mode. Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
44
44
  # @return [String]
45
45
  attr_accessor :socket_type
46
46
  # Supported authentication types. Items: Email account authentication types. Enum, available values: NoAuth, OAuth2, PasswordCleartext, PasswordEncrypted, SmtpAfterPop, ClientIpAddress
@@ -85,7 +85,7 @@ module AsposeEmailCloud
85
85
  # @param [String] protocol_type Type of connection protocol. Enum, available values: IMAP, POP3, SMTP, EWS, WebDav
86
86
  # @param [String] host Email account host.
87
87
  # @param [Integer] port Port.
88
- # @param [String] socket_type Email account security mode Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
88
+ # @param [String] socket_type Email account security mode. Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
89
89
  # @param [Array<String>] authentication_types Supported authentication types. Items: Email account authentication types. Enum, available values: NoAuth, OAuth2, PasswordCleartext, PasswordEncrypted, SmtpAfterPop, ClientIpAddress
90
90
  # @param [Array<NameValuePair>] extra_info Extra account information.
91
91
  # @param [BOOLEAN] is_validated Determines that configuration validated. Set to false if validation skipped.
@@ -34,7 +34,7 @@ module AsposeEmailCloud
34
34
  # Mail server port
35
35
  # @return [Integer]
36
36
  attr_accessor :port
37
- # Email account security mode Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
37
+ # Email account security mode. Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
38
38
  # @return [String]
39
39
  attr_accessor :security_options
40
40
  # Type of connection protocol. Enum, available values: IMAP, POP3, SMTP, EWS, WebDav
@@ -73,7 +73,7 @@ module AsposeEmailCloud
73
73
  # Initializes the object
74
74
  # @param [String] host Mail server host name or IP address
75
75
  # @param [Integer] port Mail server port
76
- # @param [String] security_options Email account security mode Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
76
+ # @param [String] security_options Email account security mode. Enum, available values: None, SSLExplicit, SSLImplicit, SSLAuto, Auto
77
77
  # @param [String] protocol_type Type of connection protocol. Enum, available values: IMAP, POP3, SMTP, EWS, WebDav
78
78
  # @param [EmailClientAccountCredentials] credentials Email client account credentials
79
79
  # @param [StorageFileLocation] cache_file File with messages cache. Used to provide extra functions, which are not supported by account
@@ -29,10 +29,10 @@ require_relative './http_request'
29
29
  module AsposeEmailCloud
30
30
  # Request model for email_convert operation.
31
31
  class EmailConvertRequest < EmailRequest
32
- # File format to convert to Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
32
+ # File format to convert from. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
33
33
  # @return [String]
34
34
  attr_accessor :from_format
35
- # File format to convert from Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
35
+ # File format to convert to. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
36
36
  # @return [String]
37
37
  attr_accessor :to_format
38
38
  # File to convert
@@ -40,8 +40,8 @@ module AsposeEmailCloud
40
40
  attr_accessor :file
41
41
 
42
42
  # Converts email document to specified format and returns as file
43
- # @param [String] from_format File format to convert to Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
44
- # @param [String] to_format File format to convert from Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
43
+ # @param [String] from_format File format to convert from. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
44
+ # @param [String] to_format File format to convert to. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
45
45
  # @param [File] file File to convert
46
46
  def initialize(from_format:, to_format:, file:)
47
47
  self.from_format = from_format if from_format
@@ -124,6 +124,12 @@ module AsposeEmailCloud
124
124
  # The X-Mailer the software that created the e-mail message.
125
125
  # @return [String]
126
126
  attr_accessor :x_mailer
127
+ # Gets or sets an epilogue text. It is located after the last boundary.
128
+ # @return [String]
129
+ attr_accessor :epilogue
130
+ # Gets or sets a preamble text. It is located before the first boundary and generally includes an explanatory note to non-MIME conformant readers.
131
+ # @return [String]
132
+ attr_accessor :preamble
127
133
  # Attribute mapping from ruby-style variable name to JSON key.
128
134
  def self.attribute_map
129
135
  {
@@ -158,7 +164,9 @@ module AsposeEmailCloud
158
164
  :'subject_encoding' => :'subjectEncoding',
159
165
  :'time_zone_offset' => :'timeZoneOffset',
160
166
  :'to' => :'to',
161
- :'x_mailer' => :'xMailer'
167
+ :'x_mailer' => :'xMailer',
168
+ :'epilogue' => :'epilogue',
169
+ :'preamble' => :'preamble'
162
170
  }
163
171
  end
164
172
 
@@ -196,7 +204,9 @@ module AsposeEmailCloud
196
204
  :'subject_encoding' => :'String',
197
205
  :'time_zone_offset' => :'Integer',
198
206
  :'to' => :'Array<MailAddress>',
199
- :'x_mailer' => :'String'
207
+ :'x_mailer' => :'String',
208
+ :'epilogue' => :'String',
209
+ :'preamble' => :'String'
200
210
  }
201
211
  end
202
212
 
@@ -233,6 +243,8 @@ module AsposeEmailCloud
233
243
  # @param [Integer] time_zone_offset Coordinated Universal Time (UTC) offset for the message dates. This property defines the time zone difference, between the local time and UTC represented as count of ticks (10 000 per millisecond).
234
244
  # @param [Array<MailAddress>] to The address collection that contains the recipients of message.
235
245
  # @param [String] x_mailer The X-Mailer the software that created the e-mail message.
246
+ # @param [String] epilogue Gets or sets an epilogue text. It is located after the last boundary.
247
+ # @param [String] preamble Gets or sets a preamble text. It is located before the first boundary and generally includes an explanatory note to non-MIME conformant readers.
236
248
  def initialize(
237
249
  alternate_views: nil,
238
250
  attachments: nil,
@@ -265,7 +277,9 @@ module AsposeEmailCloud
265
277
  subject_encoding: nil,
266
278
  time_zone_offset: nil,
267
279
  to: nil,
268
- x_mailer: nil)
280
+ x_mailer: nil,
281
+ epilogue: nil,
282
+ preamble: nil)
269
283
  self.alternate_views = alternate_views if alternate_views
270
284
  self.attachments = attachments if attachments
271
285
  self.bcc = bcc if bcc
@@ -298,6 +312,8 @@ module AsposeEmailCloud
298
312
  self.time_zone_offset = time_zone_offset if time_zone_offset
299
313
  self.to = to if to
300
314
  self.x_mailer = x_mailer if x_mailer
315
+ self.epilogue = epilogue if epilogue
316
+ self.preamble = preamble if preamble
301
317
  end
302
318
 
303
319
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -394,7 +410,9 @@ module AsposeEmailCloud
394
410
  subject_encoding == o.subject_encoding &&
395
411
  time_zone_offset == o.time_zone_offset &&
396
412
  to == o.to &&
397
- x_mailer == o.x_mailer
413
+ x_mailer == o.x_mailer &&
414
+ epilogue == o.epilogue &&
415
+ preamble == o.preamble
398
416
  end
399
417
 
400
418
  # @see the `==` method
@@ -406,7 +424,7 @@ module AsposeEmailCloud
406
424
  # Calculates hash code according to all attributes.
407
425
  # @return [Fixnum] Hash code
408
426
  def hash
409
- [alternate_views, attachments, bcc, body, body_encoding, body_type, cc, date, delivery_notification_options, from, headers, html_body, html_body_text, is_body_html, is_draft, is_encrypted, is_signed, linked_resources, message_id, original_is_tnef, preferred_text_encoding, priority, read_receipt_to, reply_to_list, reverse_path, sender, sensitivity, subject, subject_encoding, time_zone_offset, to, x_mailer].hash
427
+ [alternate_views, attachments, bcc, body, body_encoding, body_type, cc, date, delivery_notification_options, from, headers, html_body, html_body_text, is_body_html, is_draft, is_encrypted, is_signed, linked_resources, message_id, original_is_tnef, preferred_text_encoding, priority, read_receipt_to, reply_to_list, reverse_path, sender, sensitivity, subject, subject_encoding, time_zone_offset, to, x_mailer, epilogue, preamble].hash
410
428
  end
411
429
 
412
430
  # Builds the object from hash
@@ -29,7 +29,7 @@ require_relative './http_request'
29
29
  module AsposeEmailCloud
30
30
  # Request model for email_from_file operation.
31
31
  class EmailFromFileRequest < EmailRequest
32
- # Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
32
+ # Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
33
33
  # @return [String]
34
34
  attr_accessor :format
35
35
  # File to convert
@@ -37,7 +37,7 @@ module AsposeEmailCloud
37
37
  attr_accessor :file
38
38
 
39
39
  # Converts email document to a model representation
40
- # @param [String] format Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
40
+ # @param [String] format Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
41
41
  # @param [File] file File to convert
42
42
  def initialize(format:, file:)
43
43
  self.format = format if format
@@ -32,7 +32,7 @@ module AsposeEmailCloud
32
32
  # Email document file name
33
33
  # @return [String]
34
34
  attr_accessor :file_name
35
- # File format Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
35
+ # File format. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
36
36
  # @return [String]
37
37
  attr_accessor :format
38
38
  # Storage name
@@ -44,7 +44,7 @@ module AsposeEmailCloud
44
44
 
45
45
  # Converts email document from storage to specified format and returns as file
46
46
  # @param [String] file_name Email document file name
47
- # @param [String] format File format Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
47
+ # @param [String] format File format. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
48
48
  # @param [String] storage Storage name
49
49
  # @param [String] folder Path to folder in storage
50
50
  def initialize(file_name:, format:, storage: nil, folder: nil)
@@ -28,7 +28,7 @@ require 'date'
28
28
  module AsposeEmailCloud
29
29
  # Convert MapiCalendar to file request.
30
30
  class MapiCalendarAsFileRequest
31
- # Calendar file format Enum, available values: Ics, Msg
31
+ # Calendar file format. Enum, available values: Ics, Msg
32
32
  # @return [String]
33
33
  attr_accessor :format
34
34
  # MAPI calendar model.
@@ -51,7 +51,7 @@ module AsposeEmailCloud
51
51
  end
52
52
 
53
53
  # Initializes the object
54
- # @param [String] format Calendar file format Enum, available values: Ics, Msg
54
+ # @param [String] format Calendar file format. Enum, available values: Ics, Msg
55
55
  # @param [MapiCalendarDto] value MAPI calendar model.
56
56
  def initialize(
57
57
  format: nil,
@@ -28,7 +28,7 @@ require 'date'
28
28
  module AsposeEmailCloud
29
29
  # Represents the daily recurrence pattern of the mapi calendar.
30
30
  class MapiCalendarDailyRecurrencePatternDto < MapiCalendarRecurrencePatternDto
31
- # Enumerated the calendar type of the mapi recurrence Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
31
+ # Enumerated the calendar type of the mapi recurrence. Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
32
32
  # @return [String]
33
33
  attr_accessor :calendar_type
34
34
  # An array of dates, each of which is the original instance date of either a deleted instance or a modified instance for this recurrence.
@@ -43,7 +43,7 @@ module AsposeEmailCloud
43
43
  # An exception specifies changes to an instance of a recurring series.
44
44
  # @return [Array<MapiCalendarExceptionInfoDto>]
45
45
  attr_accessor :exceptions
46
- # Enumerates mapi calendar recurrence frequency Enum, available values: None, Daily, Weekly, Monthly, Yearly
46
+ # Enumerates mapi calendar recurrence frequency. Enum, available values: None, Daily, Weekly, Monthly, Yearly
47
47
  # @return [String]
48
48
  attr_accessor :frequency
49
49
  # An array of dates, each of which is the date of a modified instance.
@@ -52,7 +52,7 @@ module AsposeEmailCloud
52
52
  # Number of occurrences in a recurrence.
53
53
  # @return [Integer]
54
54
  attr_accessor :occurrence_count
55
- # Enumerates the mapi calendar recurrence pattern types Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
55
+ # Enumerates the mapi calendar recurrence pattern types. Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
56
56
  # @return [String]
57
57
  attr_accessor :pattern_type
58
58
  # Interval at which the meeting pattern repeats.
@@ -74,7 +74,7 @@ module AsposeEmailCloud
74
74
  def discriminator=(discriminator) #setter method, parameter ignored
75
75
  @discriminator = self.class.name.split('::').last
76
76
  end
77
- # Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
77
+ # Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern. Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
78
78
  # @return [Array<String>]
79
79
  attr_accessor :day_of_week
80
80
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -120,20 +120,20 @@ module AsposeEmailCloud
120
120
  end
121
121
 
122
122
  # Initializes the object
123
- # @param [String] calendar_type Enumerated the calendar type of the mapi recurrence Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
123
+ # @param [String] calendar_type Enumerated the calendar type of the mapi recurrence. Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
124
124
  # @param [Array<DateTime>] deleted_instance_dates An array of dates, each of which is the original instance date of either a deleted instance or a modified instance for this recurrence.
125
125
  # @param [DateTime] end_date End date of an item recurrence pattern.
126
126
  # @param [String] end_type Enumerates the ending type for the recurrence. Enum, available values: None, EndAfterDate, EndAfterNOccurrences, NeverEnd
127
127
  # @param [Array<MapiCalendarExceptionInfoDto>] exceptions An exception specifies changes to an instance of a recurring series.
128
- # @param [String] frequency Enumerates mapi calendar recurrence frequency Enum, available values: None, Daily, Weekly, Monthly, Yearly
128
+ # @param [String] frequency Enumerates mapi calendar recurrence frequency. Enum, available values: None, Daily, Weekly, Monthly, Yearly
129
129
  # @param [Array<DateTime>] modified_instance_dates An array of dates, each of which is the date of a modified instance.
130
130
  # @param [Integer] occurrence_count Number of occurrences in a recurrence.
131
- # @param [String] pattern_type Enumerates the mapi calendar recurrence pattern types Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
131
+ # @param [String] pattern_type Enumerates the mapi calendar recurrence pattern types. Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
132
132
  # @param [Integer] period Interval at which the meeting pattern repeats.
133
133
  # @param [BOOLEAN] sliding_flag Defines whether pattern is sliding or not.
134
134
  # @param [DateTime] start_date Start date of an item recurrence pattern.
135
135
  # @param [String] week_start_day Day of week. Enum, available values: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
136
- # @param [Array<String>] day_of_week Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
136
+ # @param [Array<String>] day_of_week Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern. Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
137
137
  def initialize(
138
138
  calendar_type: nil,
139
139
  deleted_instance_dates: nil,
@@ -89,10 +89,10 @@ module AsposeEmailCloud
89
89
  # Attendees
90
90
  # @return [MapiCalendarAttendeesDto]
91
91
  attr_accessor :attendees
92
- # Enumerates the mapi calendar possible busy status Enum, available values: Free, Tentative, Busy, OutOfOffice
92
+ # Enumerates the mapi calendar possible busy status. Enum, available values: Free, Tentative, Busy, OutOfOffice
93
93
  # @return [String]
94
94
  attr_accessor :busy_status
95
- # Actions the user has taken on this Meeting object. Items: Enumerates the actions the user can taken on the Meeting object Enum, available values: Manager, Delegate, DeletedWithNoResponse, DeletedExceptionWithNoResponse, RespondedTentative, RespondedAccept, RespondedDecline, ModifiedStartTime, ModifiedEndTime, ModifiedLocation, RespondedExceptionDecline, Canceled, ExceptionCanceled
95
+ # Actions the user has taken on this Meeting object. Items: Enumerates the actions the user can taken on the Meeting object. Enum, available values: Manager, Delegate, DeletedWithNoResponse, DeletedExceptionWithNoResponse, RespondedTentative, RespondedAccept, RespondedDecline, ModifiedStartTime, ModifiedEndTime, ModifiedLocation, RespondedExceptionDecline, Canceled, ExceptionCanceled
96
96
  # @return [Array<String>]
97
97
  attr_accessor :client_intent
98
98
  # End date and time of the event. If the date is not set, default value for DateTime is returned.
@@ -238,8 +238,8 @@ module AsposeEmailCloud
238
238
  # @param [Array<MapiPropertyDto>] properties List of MAPI properties
239
239
  # @param [BOOLEAN] appointment_counter_proposal Value indicating whether a Meeting Response object is a counter proposal.
240
240
  # @param [MapiCalendarAttendeesDto] attendees Attendees
241
- # @param [String] busy_status Enumerates the mapi calendar possible busy status Enum, available values: Free, Tentative, Busy, OutOfOffice
242
- # @param [Array<String>] client_intent Actions the user has taken on this Meeting object. Items: Enumerates the actions the user can taken on the Meeting object Enum, available values: Manager, Delegate, DeletedWithNoResponse, DeletedExceptionWithNoResponse, RespondedTentative, RespondedAccept, RespondedDecline, ModifiedStartTime, ModifiedEndTime, ModifiedLocation, RespondedExceptionDecline, Canceled, ExceptionCanceled
241
+ # @param [String] busy_status Enumerates the mapi calendar possible busy status. Enum, available values: Free, Tentative, Busy, OutOfOffice
242
+ # @param [Array<String>] client_intent Actions the user has taken on this Meeting object. Items: Enumerates the actions the user can taken on the Meeting object. Enum, available values: Manager, Delegate, DeletedWithNoResponse, DeletedExceptionWithNoResponse, RespondedTentative, RespondedAccept, RespondedDecline, ModifiedStartTime, ModifiedEndTime, ModifiedLocation, RespondedExceptionDecline, Canceled, ExceptionCanceled
243
243
  # @param [DateTime] end_date End date and time of the event. If the date is not set, default value for DateTime is returned.
244
244
  # @param [MapiCalendarTimeZoneDto] end_date_time_zone Time zone information that indicates the time zone of the EndDate property.
245
245
  # @param [BOOLEAN] is_all_day Value indicating whether the event is an all-day event.
@@ -34,7 +34,7 @@ module AsposeEmailCloud
34
34
  # Body.
35
35
  # @return [String]
36
36
  attr_accessor :body
37
- # Enumerates the mapi calendar possible busy status Enum, available values: Free, Tentative, Busy, OutOfOffice
37
+ # Enumerates the mapi calendar possible busy status. Enum, available values: Free, Tentative, Busy, OutOfOffice
38
38
  # @return [String]
39
39
  attr_accessor :busy_status
40
40
  # End date.
@@ -46,7 +46,7 @@ module AsposeEmailCloud
46
46
  # Location.
47
47
  # @return [String]
48
48
  attr_accessor :location
49
- # Enumerates the appointment state Enum, available values: Meeting, Received, Canceled
49
+ # Enumerates the appointment state. Enum, available values: Meeting, Received, Canceled
50
50
  # @return [String]
51
51
  attr_accessor :meeting_type
52
52
  # Original start date.
@@ -113,11 +113,11 @@ module AsposeEmailCloud
113
113
  # Initializes the object
114
114
  # @param [Array<MapiAttachmentDto>] attachments Attachments in the recurrence exception.
115
115
  # @param [String] body Body.
116
- # @param [String] busy_status Enumerates the mapi calendar possible busy status Enum, available values: Free, Tentative, Busy, OutOfOffice
116
+ # @param [String] busy_status Enumerates the mapi calendar possible busy status. Enum, available values: Free, Tentative, Busy, OutOfOffice
117
117
  # @param [DateTime] end_date_time End date.
118
118
  # @param [BOOLEAN] has_attachment Value of this field specifies whether the Exception Embedded Message object contains attachments.
119
119
  # @param [String] location Location.
120
- # @param [String] meeting_type Enumerates the appointment state Enum, available values: Meeting, Received, Canceled
120
+ # @param [String] meeting_type Enumerates the appointment state. Enum, available values: Meeting, Received, Canceled
121
121
  # @param [DateTime] original_start_date Original start date.
122
122
  # @param [Array<String>] override_flags Override flags. Items: Specifies what data in the MapiCalendarOverride structure has a value different from the recurring series. Enum, available values: Subject, MeetingType, ReminderDelta, Reminder, Location, BusyStatus, Attachment, Subtype, AppointmentColor, ExceptionalBody
123
123
  # @param [Integer] reminder_delta Reminder delta.
@@ -28,7 +28,7 @@ require 'date'
28
28
  module AsposeEmailCloud
29
29
  # Mapi recurrence pattern.
30
30
  class MapiCalendarRecurrencePatternDto
31
- # Enumerated the calendar type of the mapi recurrence Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
31
+ # Enumerated the calendar type of the mapi recurrence. Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
32
32
  # @return [String]
33
33
  attr_accessor :calendar_type
34
34
  # An array of dates, each of which is the original instance date of either a deleted instance or a modified instance for this recurrence.
@@ -43,7 +43,7 @@ module AsposeEmailCloud
43
43
  # An exception specifies changes to an instance of a recurring series.
44
44
  # @return [Array<MapiCalendarExceptionInfoDto>]
45
45
  attr_accessor :exceptions
46
- # Enumerates mapi calendar recurrence frequency Enum, available values: None, Daily, Weekly, Monthly, Yearly
46
+ # Enumerates mapi calendar recurrence frequency. Enum, available values: None, Daily, Weekly, Monthly, Yearly
47
47
  # @return [String]
48
48
  attr_accessor :frequency
49
49
  # An array of dates, each of which is the date of a modified instance.
@@ -52,7 +52,7 @@ module AsposeEmailCloud
52
52
  # Number of occurrences in a recurrence.
53
53
  # @return [Integer]
54
54
  attr_accessor :occurrence_count
55
- # Enumerates the mapi calendar recurrence pattern types Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
55
+ # Enumerates the mapi calendar recurrence pattern types. Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
56
56
  # @return [String]
57
57
  attr_accessor :pattern_type
58
58
  # Interval at which the meeting pattern repeats.
@@ -115,15 +115,15 @@ module AsposeEmailCloud
115
115
  end
116
116
 
117
117
  # Initializes the object
118
- # @param [String] calendar_type Enumerated the calendar type of the mapi recurrence Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
118
+ # @param [String] calendar_type Enumerated the calendar type of the mapi recurrence. Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
119
119
  # @param [Array<DateTime>] deleted_instance_dates An array of dates, each of which is the original instance date of either a deleted instance or a modified instance for this recurrence.
120
120
  # @param [DateTime] end_date End date of an item recurrence pattern.
121
121
  # @param [String] end_type Enumerates the ending type for the recurrence. Enum, available values: None, EndAfterDate, EndAfterNOccurrences, NeverEnd
122
122
  # @param [Array<MapiCalendarExceptionInfoDto>] exceptions An exception specifies changes to an instance of a recurring series.
123
- # @param [String] frequency Enumerates mapi calendar recurrence frequency Enum, available values: None, Daily, Weekly, Monthly, Yearly
123
+ # @param [String] frequency Enumerates mapi calendar recurrence frequency. Enum, available values: None, Daily, Weekly, Monthly, Yearly
124
124
  # @param [Array<DateTime>] modified_instance_dates An array of dates, each of which is the date of a modified instance.
125
125
  # @param [Integer] occurrence_count Number of occurrences in a recurrence.
126
- # @param [String] pattern_type Enumerates the mapi calendar recurrence pattern types Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
126
+ # @param [String] pattern_type Enumerates the mapi calendar recurrence pattern types. Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
127
127
  # @param [Integer] period Interval at which the meeting pattern repeats.
128
128
  # @param [BOOLEAN] sliding_flag Defines whether pattern is sliding or not.
129
129
  # @param [DateTime] start_date Start date of an item recurrence pattern.
@@ -34,7 +34,7 @@ module AsposeEmailCloud
34
34
 
35
35
  # @return [MapiCalendarDto]
36
36
  attr_accessor :value
37
- # Calendar file format Enum, available values: Ics, Msg
37
+ # Calendar file format. Enum, available values: Ics, Msg
38
38
  # @return [String]
39
39
  attr_accessor :format
40
40
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -58,7 +58,7 @@ module AsposeEmailCloud
58
58
  # Initializes the object
59
59
  # @param [StorageFileLocation] storage_file
60
60
  # @param [MapiCalendarDto] value
61
- # @param [String] format Calendar file format Enum, available values: Ics, Msg
61
+ # @param [String] format Calendar file format. Enum, available values: Ics, Msg
62
62
  def initialize(
63
63
  storage_file: nil,
64
64
  value: nil,
@@ -43,7 +43,7 @@ module AsposeEmailCloud
43
43
  # Date and local time that indicate when to begin using the StandardBias.
44
44
  # @return [MapiCalendarTimeZoneRuleDto]
45
45
  attr_accessor :standard_date
46
- # Individual bit flags that specify information about this TimeZoneRule. Items: Enumerates the individual bit flags that specify information about TimeZoneRule Enum, available values: TzRuleFlagRecurCurrentTzReg, TzRuleFlagEffectiveTzReg
46
+ # Individual bit flags that specify information about this TimeZoneRule. Items: Enumerates the individual bit flags that specify information about TimeZoneRule. Enum, available values: TzRuleFlagRecurCurrentTzReg, TzRuleFlagEffectiveTzReg
47
47
  # @return [Array<String>]
48
48
  attr_accessor :time_zone_flags
49
49
  # Year in which this rule is scheduled to take effect.
@@ -81,7 +81,7 @@ module AsposeEmailCloud
81
81
  # @param [MapiCalendarTimeZoneRuleDto] daylight_date Date and local time that indicate when to begin using the DaylightBias.
82
82
  # @param [Integer] standard_bias Offset in minutes from lBias during standard time.
83
83
  # @param [MapiCalendarTimeZoneRuleDto] standard_date Date and local time that indicate when to begin using the StandardBias.
84
- # @param [Array<String>] time_zone_flags Individual bit flags that specify information about this TimeZoneRule. Items: Enumerates the individual bit flags that specify information about TimeZoneRule Enum, available values: TzRuleFlagRecurCurrentTzReg, TzRuleFlagEffectiveTzReg
84
+ # @param [Array<String>] time_zone_flags Individual bit flags that specify information about this TimeZoneRule. Items: Enumerates the individual bit flags that specify information about TimeZoneRule. Enum, available values: TzRuleFlagRecurCurrentTzReg, TzRuleFlagEffectiveTzReg
85
85
  # @param [Integer] year Year in which this rule is scheduled to take effect.
86
86
  def initialize(
87
87
  bias: nil,
@@ -28,7 +28,7 @@ require 'date'
28
28
  module AsposeEmailCloud
29
29
  # Represents the weekly recurrence pattern of the mapi calendar
30
30
  class MapiCalendarWeeklyRecurrencePatternDto < MapiCalendarRecurrencePatternDto
31
- # Enumerated the calendar type of the mapi recurrence Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
31
+ # Enumerated the calendar type of the mapi recurrence. Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
32
32
  # @return [String]
33
33
  attr_accessor :calendar_type
34
34
  # An array of dates, each of which is the original instance date of either a deleted instance or a modified instance for this recurrence.
@@ -43,7 +43,7 @@ module AsposeEmailCloud
43
43
  # An exception specifies changes to an instance of a recurring series.
44
44
  # @return [Array<MapiCalendarExceptionInfoDto>]
45
45
  attr_accessor :exceptions
46
- # Enumerates mapi calendar recurrence frequency Enum, available values: None, Daily, Weekly, Monthly, Yearly
46
+ # Enumerates mapi calendar recurrence frequency. Enum, available values: None, Daily, Weekly, Monthly, Yearly
47
47
  # @return [String]
48
48
  attr_accessor :frequency
49
49
  # An array of dates, each of which is the date of a modified instance.
@@ -52,7 +52,7 @@ module AsposeEmailCloud
52
52
  # Number of occurrences in a recurrence.
53
53
  # @return [Integer]
54
54
  attr_accessor :occurrence_count
55
- # Enumerates the mapi calendar recurrence pattern types Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
55
+ # Enumerates the mapi calendar recurrence pattern types. Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
56
56
  # @return [String]
57
57
  attr_accessor :pattern_type
58
58
  # Interval at which the meeting pattern repeats.
@@ -74,7 +74,7 @@ module AsposeEmailCloud
74
74
  def discriminator=(discriminator) #setter method, parameter ignored
75
75
  @discriminator = self.class.name.split('::').last
76
76
  end
77
- # Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
77
+ # Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern. Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
78
78
  # @return [Array<String>]
79
79
  attr_accessor :day_of_week
80
80
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -120,20 +120,20 @@ module AsposeEmailCloud
120
120
  end
121
121
 
122
122
  # Initializes the object
123
- # @param [String] calendar_type Enumerated the calendar type of the mapi recurrence Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
123
+ # @param [String] calendar_type Enumerated the calendar type of the mapi recurrence. Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
124
124
  # @param [Array<DateTime>] deleted_instance_dates An array of dates, each of which is the original instance date of either a deleted instance or a modified instance for this recurrence.
125
125
  # @param [DateTime] end_date End date of an item recurrence pattern.
126
126
  # @param [String] end_type Enumerates the ending type for the recurrence. Enum, available values: None, EndAfterDate, EndAfterNOccurrences, NeverEnd
127
127
  # @param [Array<MapiCalendarExceptionInfoDto>] exceptions An exception specifies changes to an instance of a recurring series.
128
- # @param [String] frequency Enumerates mapi calendar recurrence frequency Enum, available values: None, Daily, Weekly, Monthly, Yearly
128
+ # @param [String] frequency Enumerates mapi calendar recurrence frequency. Enum, available values: None, Daily, Weekly, Monthly, Yearly
129
129
  # @param [Array<DateTime>] modified_instance_dates An array of dates, each of which is the date of a modified instance.
130
130
  # @param [Integer] occurrence_count Number of occurrences in a recurrence.
131
- # @param [String] pattern_type Enumerates the mapi calendar recurrence pattern types Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
131
+ # @param [String] pattern_type Enumerates the mapi calendar recurrence pattern types. Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
132
132
  # @param [Integer] period Interval at which the meeting pattern repeats.
133
133
  # @param [BOOLEAN] sliding_flag Defines whether pattern is sliding or not.
134
134
  # @param [DateTime] start_date Start date of an item recurrence pattern.
135
135
  # @param [String] week_start_day Day of week. Enum, available values: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
136
- # @param [Array<String>] day_of_week Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
136
+ # @param [Array<String>] day_of_week Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern. Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
137
137
  def initialize(
138
138
  calendar_type: nil,
139
139
  deleted_instance_dates: nil,
@@ -28,7 +28,7 @@ require 'date'
28
28
  module AsposeEmailCloud
29
29
  # Represents the yearly and monthly recurrence pattern of the mapi calendar
30
30
  class MapiCalendarYearlyAndMonthlyRecurrencePatternDto < MapiCalendarRecurrencePatternDto
31
- # Enumerated the calendar type of the mapi recurrence Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
31
+ # Enumerated the calendar type of the mapi recurrence. Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
32
32
  # @return [String]
33
33
  attr_accessor :calendar_type
34
34
  # An array of dates, each of which is the original instance date of either a deleted instance or a modified instance for this recurrence.
@@ -43,7 +43,7 @@ module AsposeEmailCloud
43
43
  # An exception specifies changes to an instance of a recurring series.
44
44
  # @return [Array<MapiCalendarExceptionInfoDto>]
45
45
  attr_accessor :exceptions
46
- # Enumerates mapi calendar recurrence frequency Enum, available values: None, Daily, Weekly, Monthly, Yearly
46
+ # Enumerates mapi calendar recurrence frequency. Enum, available values: None, Daily, Weekly, Monthly, Yearly
47
47
  # @return [String]
48
48
  attr_accessor :frequency
49
49
  # An array of dates, each of which is the date of a modified instance.
@@ -52,7 +52,7 @@ module AsposeEmailCloud
52
52
  # Number of occurrences in a recurrence.
53
53
  # @return [Integer]
54
54
  attr_accessor :occurrence_count
55
- # Enumerates the mapi calendar recurrence pattern types Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
55
+ # Enumerates the mapi calendar recurrence pattern types. Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
56
56
  # @return [String]
57
57
  attr_accessor :pattern_type
58
58
  # Interval at which the meeting pattern repeats.
@@ -77,7 +77,7 @@ module AsposeEmailCloud
77
77
  # Day of the month on which the recurrence falls.
78
78
  # @return [Integer]
79
79
  attr_accessor :day
80
- # Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
80
+ # Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern. Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
81
81
  # @return [Array<String>]
82
82
  attr_accessor :day_of_week
83
83
  # Day positions, typically found in a month. Enum, available values: None, First, Second, Third, Fourth, Last
@@ -130,21 +130,21 @@ module AsposeEmailCloud
130
130
  end
131
131
 
132
132
  # Initializes the object
133
- # @param [String] calendar_type Enumerated the calendar type of the mapi recurrence Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
133
+ # @param [String] calendar_type Enumerated the calendar type of the mapi recurrence. Enum, available values: Default, CalGregorian, CalGregorianUs, CalJapan, CalTaiwan, CalKorea, CalHijri, CalThai, CalHebrew, CalGregorianMeFrench, CalGregorianArabic, CalGregorianXLitEnglish, CalGregorianXLitFrench, CalLunarJapanese, CalChineseLunar, CalSaka, CalLunarEtoChn, CalLunarEtoKor, CalLunarRokuyou, CalLunarKorean, CalUmAlQura
134
134
  # @param [Array<DateTime>] deleted_instance_dates An array of dates, each of which is the original instance date of either a deleted instance or a modified instance for this recurrence.
135
135
  # @param [DateTime] end_date End date of an item recurrence pattern.
136
136
  # @param [String] end_type Enumerates the ending type for the recurrence. Enum, available values: None, EndAfterDate, EndAfterNOccurrences, NeverEnd
137
137
  # @param [Array<MapiCalendarExceptionInfoDto>] exceptions An exception specifies changes to an instance of a recurring series.
138
- # @param [String] frequency Enumerates mapi calendar recurrence frequency Enum, available values: None, Daily, Weekly, Monthly, Yearly
138
+ # @param [String] frequency Enumerates mapi calendar recurrence frequency. Enum, available values: None, Daily, Weekly, Monthly, Yearly
139
139
  # @param [Array<DateTime>] modified_instance_dates An array of dates, each of which is the date of a modified instance.
140
140
  # @param [Integer] occurrence_count Number of occurrences in a recurrence.
141
- # @param [String] pattern_type Enumerates the mapi calendar recurrence pattern types Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
141
+ # @param [String] pattern_type Enumerates the mapi calendar recurrence pattern types. Enum, available values: Day, Week, Month, MonthEnd, MonthNth, HjMonth, HjMonthNth, HjMonthEnd
142
142
  # @param [Integer] period Interval at which the meeting pattern repeats.
143
143
  # @param [BOOLEAN] sliding_flag Defines whether pattern is sliding or not.
144
144
  # @param [DateTime] start_date Start date of an item recurrence pattern.
145
145
  # @param [String] week_start_day Day of week. Enum, available values: Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
146
146
  # @param [Integer] day Day of the month on which the recurrence falls.
147
- # @param [Array<String>] day_of_week Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
147
+ # @param [Array<String>] day_of_week Days of week at which the event occurs. Items: Enumerates the days of week of the mapi calendar recurrence pattern. Enum, available values: Saturday, Friday, Thursday, Wednesday, Tuesday, Monday, Sunday
148
148
  # @param [String] position Day positions, typically found in a month. Enum, available values: None, First, Second, Third, Fourth, Last
149
149
  def initialize(
150
150
  calendar_type: nil,
@@ -29,7 +29,7 @@ require_relative './http_request'
29
29
  module AsposeEmailCloud
30
30
  # Request model for mapi_contact_from_file operation.
31
31
  class MapiContactFromFileRequest < EmailRequest
32
- # File format Enum, available values: VCard, WebDav, Msg
32
+ # File format. Enum, available values: VCard, WebDav, Msg
33
33
  # @return [String]
34
34
  attr_accessor :format
35
35
  # File to convert
@@ -37,7 +37,7 @@ module AsposeEmailCloud
37
37
  attr_accessor :file
38
38
 
39
39
  # Converts contact file to a MAPI model representation.
40
- # @param [String] format File format Enum, available values: VCard, WebDav, Msg
40
+ # @param [String] format File format. Enum, available values: VCard, WebDav, Msg
41
41
  # @param [File] file File to convert
42
42
  def initialize(format:, file:)
43
43
  self.format = format if format
@@ -76,7 +76,7 @@ module AsposeEmailCloud
76
76
  # Specifies the name of the network to which the contact's computer is connected
77
77
  # @return [String]
78
78
  attr_accessor :computer_network_name
79
- # Gender of the contact Enum, available values: Unspecified, Female, Male
79
+ # Gender of the contact. Enum, available values: Unspecified, Female, Male
80
80
  # @return [String]
81
81
  attr_accessor :gender
82
82
  # Specifies the name of the person who referred this contact to the user
@@ -152,7 +152,7 @@ module AsposeEmailCloud
152
152
  # @param [String] business_home_page Specifies the contact's business web page URL
153
153
  # @param [String] ftp_site Specifies the contact's File Transfer Protocol (FTP) URL
154
154
  # @param [String] computer_network_name Specifies the name of the network to which the contact's computer is connected
155
- # @param [String] gender Gender of the contact Enum, available values: Unspecified, Female, Male
155
+ # @param [String] gender Gender of the contact. Enum, available values: Unspecified, Female, Male
156
156
  # @param [String] referred_by_name Specifies the name of the person who referred this contact to the user
157
157
  # @param [Array<String>] children Contains a list of names of children.
158
158
  def initialize(
@@ -29,7 +29,7 @@ require_relative './http_request'
29
29
  module AsposeEmailCloud
30
30
  # Request model for mapi_message_from_file operation.
31
31
  class MapiMessageFromFileRequest < EmailRequest
32
- # File format Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
32
+ # File format. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
33
33
  # @return [String]
34
34
  attr_accessor :format
35
35
  # File to convert
@@ -37,7 +37,7 @@ module AsposeEmailCloud
37
37
  attr_accessor :file
38
38
 
39
39
  # Converts email file to a MAPI model representation
40
- # @param [String] format File format Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
40
+ # @param [String] format File format. Enum, available values: Eml, Msg, MsgUnicode, Mhtml, Html, Tnef, Oft
41
41
  # @param [File] file File to convert
42
42
  def initialize(format:, file:)
43
43
  self.format = format if format
@@ -38,7 +38,7 @@ module AsposeEmailCloud
38
38
  # The name used to refer to the property in the documentation. The prefix of the canonical name identifies the basic characteristics of a property to the implementer. The canonical naming structure uses three categories that are denoted by the following prefixes to the canonical property name: * PidLid prefix: Properties identified by an unsigned 32-bit quantity along with a property set. * PidName prefix: Properties identified by a string name along with a property set. * PidTag prefix: Properties identified by an unsigned 16-bit quantity.
39
39
  # @return [String]
40
40
  attr_accessor :canonical_name
41
- # [MS-OXCDATA]: Data Structures Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
41
+ # [MS-OXCDATA]: Data Structures. Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
42
42
  # @return [String]
43
43
  attr_accessor :data_type
44
44
  # Indicates if data type contains of multiple values
@@ -81,7 +81,7 @@ module AsposeEmailCloud
81
81
 
82
82
  # Initializes the object
83
83
  # @param [String] canonical_name The name used to refer to the property in the documentation. The prefix of the canonical name identifies the basic characteristics of a property to the implementer. The canonical naming structure uses three categories that are denoted by the following prefixes to the canonical property name: * PidLid prefix: Properties identified by an unsigned 32-bit quantity along with a property set. * PidName prefix: Properties identified by a string name along with a property set. * PidTag prefix: Properties identified by an unsigned 16-bit quantity.
84
- # @param [String] data_type [MS-OXCDATA]: Data Structures Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
84
+ # @param [String] data_type [MS-OXCDATA]: Data Structures. Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
85
85
  # @param [BOOLEAN] multiple_values_data_type Indicates if data type contains of multiple values
86
86
  # @param [String] name A string that identifies the property
87
87
  # @param [Integer] long_id An unsigned 32-bit quantity that, along with the property set, identifies a named property.
@@ -38,7 +38,7 @@ module AsposeEmailCloud
38
38
  # The name used to refer to the property in the documentation. The prefix of the canonical name identifies the basic characteristics of a property to the implementer. The canonical naming structure uses three categories that are denoted by the following prefixes to the canonical property name: * PidLid prefix: Properties identified by an unsigned 32-bit quantity along with a property set. * PidName prefix: Properties identified by a string name along with a property set. * PidTag prefix: Properties identified by an unsigned 16-bit quantity.
39
39
  # @return [String]
40
40
  attr_accessor :canonical_name
41
- # [MS-OXCDATA]: Data Structures Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
41
+ # [MS-OXCDATA]: Data Structures. Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
42
42
  # @return [String]
43
43
  attr_accessor :data_type
44
44
  # Indicates if data type contains of multiple values
@@ -76,7 +76,7 @@ module AsposeEmailCloud
76
76
 
77
77
  # Initializes the object
78
78
  # @param [String] canonical_name The name used to refer to the property in the documentation. The prefix of the canonical name identifies the basic characteristics of a property to the implementer. The canonical naming structure uses three categories that are denoted by the following prefixes to the canonical property name: * PidLid prefix: Properties identified by an unsigned 32-bit quantity along with a property set. * PidName prefix: Properties identified by a string name along with a property set. * PidTag prefix: Properties identified by an unsigned 16-bit quantity.
79
- # @param [String] data_type [MS-OXCDATA]: Data Structures Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
79
+ # @param [String] data_type [MS-OXCDATA]: Data Structures. Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
80
80
  # @param [BOOLEAN] multiple_values_data_type Indicates if data type contains of multiple values
81
81
  # @param [String] name A string that identifies the property
82
82
  # @param [String] property_set A GUID that identifies a group of properties with a similar purpose.
@@ -38,7 +38,7 @@ module AsposeEmailCloud
38
38
  # The name used to refer to the property in the documentation. The prefix of the canonical name identifies the basic characteristics of a property to the implementer. The canonical naming structure uses three categories that are denoted by the following prefixes to the canonical property name: * PidLid prefix: Properties identified by an unsigned 32-bit quantity along with a property set. * PidName prefix: Properties identified by a string name along with a property set. * PidTag prefix: Properties identified by an unsigned 16-bit quantity.
39
39
  # @return [String]
40
40
  attr_accessor :canonical_name
41
- # [MS-OXCDATA]: Data Structures Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
41
+ # [MS-OXCDATA]: Data Structures. Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
42
42
  # @return [String]
43
43
  attr_accessor :data_type
44
44
  # Indicates if data type contains of multiple values
@@ -71,7 +71,7 @@ module AsposeEmailCloud
71
71
 
72
72
  # Initializes the object
73
73
  # @param [String] canonical_name The name used to refer to the property in the documentation. The prefix of the canonical name identifies the basic characteristics of a property to the implementer. The canonical naming structure uses three categories that are denoted by the following prefixes to the canonical property name: * PidLid prefix: Properties identified by an unsigned 32-bit quantity along with a property set. * PidName prefix: Properties identified by a string name along with a property set. * PidTag prefix: Properties identified by an unsigned 16-bit quantity.
74
- # @param [String] data_type [MS-OXCDATA]: Data Structures Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
74
+ # @param [String] data_type [MS-OXCDATA]: Data Structures. Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
75
75
  # @param [BOOLEAN] multiple_values_data_type Indicates if data type contains of multiple values
76
76
  # @param [String] name A string that identifies the property
77
77
  def initialize(#,
@@ -38,7 +38,7 @@ module AsposeEmailCloud
38
38
  # The name used to refer to the property in the documentation. The prefix of the canonical name identifies the basic characteristics of a property to the implementer. The canonical naming structure uses three categories that are denoted by the following prefixes to the canonical property name: * PidLid prefix: Properties identified by an unsigned 32-bit quantity along with a property set. * PidName prefix: Properties identified by a string name along with a property set. * PidTag prefix: Properties identified by an unsigned 16-bit quantity.
39
39
  # @return [String]
40
40
  attr_accessor :canonical_name
41
- # [MS-OXCDATA]: Data Structures Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
41
+ # [MS-OXCDATA]: Data Structures. Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
42
42
  # @return [String]
43
43
  attr_accessor :data_type
44
44
  # Indicates if data type contains of multiple values
@@ -81,7 +81,7 @@ module AsposeEmailCloud
81
81
 
82
82
  # Initializes the object
83
83
  # @param [String] canonical_name The name used to refer to the property in the documentation. The prefix of the canonical name identifies the basic characteristics of a property to the implementer. The canonical naming structure uses three categories that are denoted by the following prefixes to the canonical property name: * PidLid prefix: Properties identified by an unsigned 32-bit quantity along with a property set. * PidName prefix: Properties identified by a string name along with a property set. * PidTag prefix: Properties identified by an unsigned 16-bit quantity.
84
- # @param [String] data_type [MS-OXCDATA]: Data Structures Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
84
+ # @param [String] data_type [MS-OXCDATA]: Data Structures. Enum, available values: Unspecified, Null, Integer16, Integer32, Floating32, Floating64, Currency, FloatingTime, ErrorCode, Boolean, Integer64, String, String8, Time, Guid, ServerId, Restriction, RuleAction, Binary, MultipleInteger16, MultipleInteger32, MultipleFloating32, MultipleFloating64, MultipleCurrency, MultipleFloatingTime, MultipleBoolean, MultipleInteger64, MultipleString, MultipleString8, MultipleTime, MultipleGuid, MultipleBinary, Object
85
85
  # @param [BOOLEAN] multiple_values_data_type Indicates if data type contains of multiple values
86
86
  # @param [String] name A string that identifies the property
87
87
  # @param [Integer] id An unsigned 16-bit quantity that identifies a tagged property. Property IDs are not necessarily unique. With the exception of property IDs in the range from 0x6800 to 0x7BFF, the combination of property ID and data type are unique. Property IDs in the range from 0x6800 to 0x7BFF are defined by the message class.
@@ -11,5 +11,5 @@ Swagger Codegen version: 2.4.9
11
11
  =end
12
12
 
13
13
  module AsposeEmailCloud
14
- VERSION = '21.4.0'
14
+ VERSION = '21.9.0'
15
15
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aspose_email_cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 21.4.0
4
+ version: 21.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aspose.Email team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-13 00:00:00.000000000 Z
11
+ date: 2021-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -499,7 +499,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
499
499
  - !ruby/object:Gem::Version
500
500
  version: '0'
501
501
  requirements: []
502
- rubygems_version: 3.0.3
502
+ rubygems_version: 3.0.3.1
503
503
  signing_key:
504
504
  specification_version: 4
505
505
  summary: A ruby wrapper for Aspose.Email for Cloud