Skip to content

Commit 742eab4

Browse files
SDK version 19.12.1 generated
1 parent 5b63274 commit 742eab4

15 files changed

+102
-102
lines changed

sdk/AsposeEmailCloudSdk/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,13 +147,13 @@
147147
from AsposeEmailCloudSdk.models.save_o_auth_email_account_request import SaveOAuthEmailAccountRequest
148148
from AsposeEmailCloudSdk.models.send_email_base_request import SendEmailBaseRequest
149149
from AsposeEmailCloudSdk.models.send_email_mime_base_request import SendEmailMimeBaseRequest
150-
from AsposeEmailCloudSdk.models.send_email_model_request import SendEmailModelRequest
150+
from AsposeEmailCloudSdk.models.send_email_model_rq import SendEmailModelRq
151151
from AsposeEmailCloudSdk.models.set_message_read_flag_account_base_request import SetMessageReadFlagAccountBaseRequest
152152
from AsposeEmailCloudSdk.models.storage_file_location import StorageFileLocation
153153
from AsposeEmailCloudSdk.models.ai_bcr_parse_storage_rq import AiBcrParseStorageRq
154154
from AsposeEmailCloudSdk.models.append_email_base_request import AppendEmailBaseRequest
155155
from AsposeEmailCloudSdk.models.append_email_mime_base_request import AppendEmailMimeBaseRequest
156-
from AsposeEmailCloudSdk.models.append_email_model_request import AppendEmailModelRequest
156+
from AsposeEmailCloudSdk.models.append_email_model_rq import AppendEmailModelRq
157157

158158
from AsposeEmailCloudSdk.models.requests.add_calendar_attachment_request import AddCalendarAttachmentRequest
159159
from AsposeEmailCloudSdk.models.requests.add_contact_attachment_request import AddContactAttachmentRequest

sdk/AsposeEmailCloudSdk/models/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@
141141
from AsposeEmailCloudSdk.models.save_o_auth_email_account_request import SaveOAuthEmailAccountRequest
142142
from AsposeEmailCloudSdk.models.send_email_base_request import SendEmailBaseRequest
143143
from AsposeEmailCloudSdk.models.send_email_mime_base_request import SendEmailMimeBaseRequest
144-
from AsposeEmailCloudSdk.models.send_email_model_request import SendEmailModelRequest
144+
from AsposeEmailCloudSdk.models.send_email_model_rq import SendEmailModelRq
145145
from AsposeEmailCloudSdk.models.set_message_read_flag_account_base_request import SetMessageReadFlagAccountBaseRequest
146146
from AsposeEmailCloudSdk.models.storage_file_location import StorageFileLocation
147147
from AsposeEmailCloudSdk.models.ai_bcr_parse_storage_rq import AiBcrParseStorageRq
148148
from AsposeEmailCloudSdk.models.append_email_base_request import AppendEmailBaseRequest
149149
from AsposeEmailCloudSdk.models.append_email_mime_base_request import AppendEmailMimeBaseRequest
150-
from AsposeEmailCloudSdk.models.append_email_model_request import AppendEmailModelRequest
150+
from AsposeEmailCloudSdk.models.append_email_model_rq import AppendEmailModelRq
151151

152152
from AsposeEmailCloudSdk.models.requests.add_calendar_attachment_request import AddCalendarAttachmentRequest
153153
from AsposeEmailCloudSdk.models.requests.add_contact_attachment_request import AddContactAttachmentRequest

sdk/AsposeEmailCloudSdk/models/account_base_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,16 @@ class AccountBaseRequest(object):
5757
}
5858

5959
discriminator_value_class_map = {
60+
'SendEmailModelRq': 'SendEmailModelRq',
6061
'DeleteFolderBaseRequest': 'DeleteFolderBaseRequest',
6162
'AppendEmailAccountBaseRequest': 'AppendEmailAccountBaseRequest',
6263
'SendEmailBaseRequest': 'SendEmailBaseRequest',
6364
'DeleteMessageBaseRequest': 'DeleteMessageBaseRequest',
6465
'SendEmailMimeBaseRequest': 'SendEmailMimeBaseRequest',
65-
'SendEmailModelRequest': 'SendEmailModelRequest',
6666
'AppendEmailBaseRequest': 'AppendEmailBaseRequest',
6767
'SetMessageReadFlagAccountBaseRequest': 'SetMessageReadFlagAccountBaseRequest',
68+
'AppendEmailModelRq': 'AppendEmailModelRq',
6869
'AppendEmailMimeBaseRequest': 'AppendEmailMimeBaseRequest',
69-
'AppendEmailModelRequest': 'AppendEmailModelRequest',
7070
'CreateFolderBaseRequest': 'CreateFolderBaseRequest'
7171
}
7272

sdk/AsposeEmailCloudSdk/models/append_email_model_request.py renamed to sdk/AsposeEmailCloudSdk/models/append_email_model_rq.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coding: utf-8
22
# ----------------------------------------------------------------------------
3-
# <copyright company="Aspose" file="AppendEmailModelRequest.py">
3+
# <copyright company="Aspose" file="AppendEmailModelRq.py">
44
# Copyright (c) 2018-2019 Aspose Pty Ltd. All rights reserved.
55
# </copyright>
66
# <summary>
@@ -35,7 +35,7 @@
3535
from AsposeEmailCloudSdk.models.storage_folder_location import StorageFolderLocation
3636

3737

38-
class AppendEmailModelRequest(AppendEmailAccountBaseRequest):
38+
class AppendEmailModelRq(AppendEmailAccountBaseRequest):
3939
"""Append email request
4040
"""
4141

@@ -65,8 +65,8 @@ class AppendEmailModelRequest(AppendEmailAccountBaseRequest):
6565
}
6666

6767
def __init__(self, first_account: str = None, second_account: str = None, storage_folder: StorageFolderLocation = None, folder: str = None, mark_as_sent: bool = None, message: EmailDto = None):
68-
"""AppendEmailModelRequest - a model defined in Swagger"""
69-
super(AppendEmailModelRequest, self).__init__()
68+
"""AppendEmailModelRq - a model defined in Swagger"""
69+
super(AppendEmailModelRq, self).__init__()
7070

7171
self._message = None
7272
self.discriminator = None
@@ -86,22 +86,22 @@ def __init__(self, first_account: str = None, second_account: str = None, storag
8686

8787
@property
8888
def message(self) -> EmailDto:
89-
"""Gets the message of this AppendEmailModelRequest.
89+
"""Gets the message of this AppendEmailModelRq.
9090
9191
Email document
9292
93-
:return: The message of this AppendEmailModelRequest.
93+
:return: The message of this AppendEmailModelRq.
9494
:rtype: EmailDto
9595
"""
9696
return self._message
9797

9898
@message.setter
9999
def message(self, message: EmailDto):
100-
"""Sets the message of this AppendEmailModelRequest.
100+
"""Sets the message of this AppendEmailModelRq.
101101
102102
Email document
103103
104-
:param message: The message of this AppendEmailModelRequest.
104+
:param message: The message of this AppendEmailModelRq.
105105
:type: EmailDto
106106
"""
107107
if message is None:
@@ -142,7 +142,7 @@ def __repr__(self):
142142

143143
def __eq__(self, other):
144144
"""Returns true if both objects are equal"""
145-
if not isinstance(other, AppendEmailModelRequest):
145+
if not isinstance(other, AppendEmailModelRq):
146146
return False
147147

148148
return self.__dict__ == other.__dict__

sdk/AsposeEmailCloudSdk/models/calendar_dto.py

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737

3838
class CalendarDto(object):
39-
"""iCalendar document representation
39+
"""iCalendar document representation.
4040
"""
4141

4242
"""
@@ -167,7 +167,7 @@ def __init__(self, attachments: List[Attachment] = None, attendees: List[MailAdd
167167
def attachments(self) -> List[Attachment]:
168168
"""Gets the attachments of this CalendarDto.
169169
170-
Document attachments
170+
Document attachments.
171171
172172
:return: The attachments of this CalendarDto.
173173
:rtype: list[Attachment]
@@ -178,7 +178,7 @@ def attachments(self) -> List[Attachment]:
178178
def attachments(self, attachments: List[Attachment]):
179179
"""Sets the attachments of this CalendarDto.
180180
181-
Document attachments
181+
Document attachments.
182182
183183
:param attachments: The attachments of this CalendarDto.
184184
:type: list[Attachment]
@@ -189,7 +189,7 @@ def attachments(self, attachments: List[Attachment]):
189189
def attendees(self) -> List[MailAddress]:
190190
"""Gets the attendees of this CalendarDto.
191191
192-
Event attendees
192+
Event attendees.
193193
194194
:return: The attendees of this CalendarDto.
195195
:rtype: list[MailAddress]
@@ -200,7 +200,7 @@ def attendees(self) -> List[MailAddress]:
200200
def attendees(self, attendees: List[MailAddress]):
201201
"""Sets the attendees of this CalendarDto.
202202
203-
Event attendees
203+
Event attendees.
204204
205205
:param attendees: The attendees of this CalendarDto.
206206
:type: list[MailAddress]
@@ -213,7 +213,7 @@ def attendees(self, attendees: List[MailAddress]):
213213
def description(self) -> str:
214214
"""Gets the description of this CalendarDto.
215215
216-
Description
216+
Description.
217217
218218
:return: The description of this CalendarDto.
219219
:rtype: str
@@ -224,7 +224,7 @@ def description(self) -> str:
224224
def description(self, description: str):
225225
"""Sets the description of this CalendarDto.
226226
227-
Description
227+
Description.
228228
229229
:param description: The description of this CalendarDto.
230230
:type: str
@@ -235,7 +235,7 @@ def description(self, description: str):
235235
def end_date(self) -> datetime:
236236
"""Gets the end_date of this CalendarDto.
237237
238-
End date
238+
End date.
239239
240240
:return: The end_date of this CalendarDto.
241241
:rtype: datetime
@@ -246,7 +246,7 @@ def end_date(self) -> datetime:
246246
def end_date(self, end_date: datetime):
247247
"""Sets the end_date of this CalendarDto.
248248
249-
End date
249+
End date.
250250
251251
:param end_date: The end_date of this CalendarDto.
252252
:type: datetime
@@ -259,7 +259,7 @@ def end_date(self, end_date: datetime):
259259
def end_time_zone(self) -> str:
260260
"""Gets the end_time_zone of this CalendarDto.
261261
262-
End time zone
262+
End time zone.
263263
264264
:return: The end_time_zone of this CalendarDto.
265265
:rtype: str
@@ -270,7 +270,7 @@ def end_time_zone(self) -> str:
270270
def end_time_zone(self, end_time_zone: str):
271271
"""Sets the end_time_zone of this CalendarDto.
272272
273-
End time zone
273+
End time zone.
274274
275275
:param end_time_zone: The end_time_zone of this CalendarDto.
276276
:type: str
@@ -281,7 +281,7 @@ def end_time_zone(self, end_time_zone: str):
281281
def flags(self) -> List[str]:
282282
"""Gets the flags of this CalendarDto.
283283
284-
Appointment flags
284+
Appointment flags. Items: Enumerates iCalendar flags. Enum, available values: None, AllDayEvent
285285
286286
:return: The flags of this CalendarDto.
287287
:rtype: list[str]
@@ -292,7 +292,7 @@ def flags(self) -> List[str]:
292292
def flags(self, flags: List[str]):
293293
"""Sets the flags of this CalendarDto.
294294
295-
Appointment flags
295+
Appointment flags. Items: Enumerates iCalendar flags. Enum, available values: None, AllDayEvent
296296
297297
:param flags: The flags of this CalendarDto.
298298
:type: list[str]
@@ -303,7 +303,7 @@ def flags(self, flags: List[str]):
303303
def is_description_html(self) -> bool:
304304
"""Gets the is_description_html of this CalendarDto.
305305
306-
Indicates if description is in HTML format
306+
Indicates if description is in HTML format.
307307
308308
:return: The is_description_html of this CalendarDto.
309309
:rtype: bool
@@ -314,7 +314,7 @@ def is_description_html(self) -> bool:
314314
def is_description_html(self, is_description_html: bool):
315315
"""Sets the is_description_html of this CalendarDto.
316316
317-
Indicates if description is in HTML format
317+
Indicates if description is in HTML format.
318318
319319
:param is_description_html: The is_description_html of this CalendarDto.
320320
:type: bool
@@ -327,7 +327,7 @@ def is_description_html(self, is_description_html: bool):
327327
def location(self) -> str:
328328
"""Gets the location of this CalendarDto.
329329
330-
Location
330+
Location.
331331
332332
:return: The location of this CalendarDto.
333333
:rtype: str
@@ -338,7 +338,7 @@ def location(self) -> str:
338338
def location(self, location: str):
339339
"""Sets the location of this CalendarDto.
340340
341-
Location
341+
Location.
342342
343343
:param location: The location of this CalendarDto.
344344
:type: str
@@ -425,7 +425,7 @@ def microsoft_intended_status(self, microsoft_intended_status: str):
425425
def optional_attendees(self) -> List[MailAddress]:
426426
"""Gets the optional_attendees of this CalendarDto.
427427
428-
Optional attendees
428+
Optional attendees.
429429
430430
:return: The optional_attendees of this CalendarDto.
431431
:rtype: list[MailAddress]
@@ -436,7 +436,7 @@ def optional_attendees(self) -> List[MailAddress]:
436436
def optional_attendees(self, optional_attendees: List[MailAddress]):
437437
"""Sets the optional_attendees of this CalendarDto.
438438
439-
Optional attendees
439+
Optional attendees.
440440
441441
:param optional_attendees: The optional_attendees of this CalendarDto.
442442
:type: list[MailAddress]
@@ -447,7 +447,7 @@ def optional_attendees(self, optional_attendees: List[MailAddress]):
447447
def organizer(self) -> MailAddress:
448448
"""Gets the organizer of this CalendarDto.
449449
450-
Event organizer
450+
Event organizer.
451451
452452
:return: The organizer of this CalendarDto.
453453
:rtype: MailAddress
@@ -458,7 +458,7 @@ def organizer(self) -> MailAddress:
458458
def organizer(self, organizer: MailAddress):
459459
"""Sets the organizer of this CalendarDto.
460460
461-
Event organizer
461+
Event organizer.
462462
463463
:param organizer: The organizer of this CalendarDto.
464464
:type: MailAddress
@@ -493,7 +493,7 @@ def recurrence_string(self, recurrence_string: str):
493493
def reminders(self) -> List[CalendarReminder]:
494494
"""Gets the reminders of this CalendarDto.
495495
496-
Reminders
496+
Reminders.
497497
498498
:return: The reminders of this CalendarDto.
499499
:rtype: list[CalendarReminder]
@@ -504,7 +504,7 @@ def reminders(self) -> List[CalendarReminder]:
504504
def reminders(self, reminders: List[CalendarReminder]):
505505
"""Sets the reminders of this CalendarDto.
506506
507-
Reminders
507+
Reminders.
508508
509509
:param reminders: The reminders of this CalendarDto.
510510
:type: list[CalendarReminder]
@@ -537,7 +537,7 @@ def sequence_id(self, sequence_id: str):
537537
def start_date(self) -> datetime:
538538
"""Gets the start_date of this CalendarDto.
539539
540-
Start date
540+
Start date.
541541
542542
:return: The start_date of this CalendarDto.
543543
:rtype: datetime
@@ -548,7 +548,7 @@ def start_date(self) -> datetime:
548548
def start_date(self, start_date: datetime):
549549
"""Sets the start_date of this CalendarDto.
550550
551-
Start date
551+
Start date.
552552
553553
:param start_date: The start_date of this CalendarDto.
554554
:type: datetime
@@ -561,7 +561,7 @@ def start_date(self, start_date: datetime):
561561
def start_time_zone(self) -> str:
562562
"""Gets the start_time_zone of this CalendarDto.
563563
564-
Start time zone
564+
Start time zone.
565565
566566
:return: The start_time_zone of this CalendarDto.
567567
:rtype: str
@@ -572,7 +572,7 @@ def start_time_zone(self) -> str:
572572
def start_time_zone(self, start_time_zone: str):
573573
"""Sets the start_time_zone of this CalendarDto.
574574
575-
Start time zone
575+
Start time zone.
576576
577577
:param start_time_zone: The start_time_zone of this CalendarDto.
578578
:type: str
@@ -607,7 +607,7 @@ def status(self, status: str):
607607
def summary(self) -> str:
608608
"""Gets the summary of this CalendarDto.
609609
610-
Summary
610+
Summary.
611611
612612
:return: The summary of this CalendarDto.
613613
:rtype: str
@@ -618,7 +618,7 @@ def summary(self) -> str:
618618
def summary(self, summary: str):
619619
"""Sets the summary of this CalendarDto.
620620
621-
Summary
621+
Summary.
622622
623623
:param summary: The summary of this CalendarDto.
624624
:type: str

sdk/AsposeEmailCloudSdk/models/email_dto.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def _date(self, _date: datetime):
403403
def delivery_notification_options(self) -> List[str]:
404404
"""Gets the delivery_notification_options of this EmailDto.
405405
406-
Delivery notifications.
406+
Delivery notifications. Items: Email delivery notification options. Enum, available values: Delay, Never, None, OnFailure, OnSuccess
407407
408408
:return: The delivery_notification_options of this EmailDto.
409409
:rtype: list[str]
@@ -414,7 +414,7 @@ def delivery_notification_options(self) -> List[str]:
414414
def delivery_notification_options(self, delivery_notification_options: List[str]):
415415
"""Sets the delivery_notification_options of this EmailDto.
416416
417-
Delivery notifications.
417+
Delivery notifications. Items: Email delivery notification options. Enum, available values: Delay, Never, None, OnFailure, OnSuccess
418418
419419
:param delivery_notification_options: The delivery_notification_options of this EmailDto.
420420
:type: list[str]

0 commit comments

Comments
 (0)