Skip to content

Commit

Permalink
SDK version 21.9.0.34 generated
Browse files Browse the repository at this point in the history
  • Loading branch information
Aspose-Email-Team committed Aug 12, 2023
1 parent ee388db commit 80bf6d4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 72 deletions.
18 changes: 9 additions & 9 deletions README.md
Expand Up @@ -23,15 +23,15 @@ Aspose.Email Cloud is a REST API for creating email applications that work with
- Email configuration discovery.
- Disposable email address detection.

## Improvements in version 21.9

Aspose.Email Cloud 21.9.0 comes with improvements described below:

- `EmailCloud.Email.Convert` method documentation fixed.
- Some documentation improvements.
- SDK dependencies updated.

See [Release notes](https://docs.aspose.cloud/email/aspose-email-cloud-21-9-release-notes/).
## Improvements in version 21.9

Aspose.Email Cloud 21.9.0 comes with improvements described below:

- `EmailCloud.Email.Convert` method documentation fixed.
- Some documentation improvements.
- SDK dependencies updated.

See [Release notes](https://docs.aspose.cloud/email/aspose-email-cloud-21-9-release-notes/).


## How to use the SDK?
Expand Down
62 changes: 3 additions & 59 deletions sdk/AsposeEmailCloudSdk/models/calendar_dto.py
Expand Up @@ -71,9 +71,7 @@ class CalendarDto(object):
'summary': 'str',
'transparency': 'str',
'_class': 'str',
'microsoft_importance': 'str',
'html_description': 'str',
'date_time_stamp': 'datetime'
'microsoft_importance': 'str'
}

attribute_map = {
Expand All @@ -100,12 +98,10 @@ class CalendarDto(object):
'summary': 'summary',
'transparency': 'transparency',
'_class': 'class',
'microsoft_importance': 'microsoftImportance',
'html_description': 'htmlDescription',
'date_time_stamp': 'dateTimeStamp'
'microsoft_importance': 'microsoftImportance'
}

def __init__(self, attachments: List[Attachment] = None, attendees: List[MailAddress] = None, description: str = None, end_date: datetime = None, end_time_zone: str = None, flags: List[str] = None, is_description_html: bool = None, location: str = None, method: str = None, microsoft_busy_status: str = None, microsoft_intended_status: str = None, optional_attendees: List[MailAddress] = None, organizer: MailAddress = None, recurrence_string: str = None, recurrence: RecurrencePatternDto = None, reminders: List[CalendarReminder] = None, sequence_id: str = None, start_date: datetime = None, start_time_zone: str = None, status: str = None, summary: str = None, transparency: str = None, _class: str = None, microsoft_importance: str = None, html_description: str = None, date_time_stamp: datetime = None):
def __init__(self, attachments: List[Attachment] = None, attendees: List[MailAddress] = None, description: str = None, end_date: datetime = None, end_time_zone: str = None, flags: List[str] = None, is_description_html: bool = None, location: str = None, method: str = None, microsoft_busy_status: str = None, microsoft_intended_status: str = None, optional_attendees: List[MailAddress] = None, organizer: MailAddress = None, recurrence_string: str = None, recurrence: RecurrencePatternDto = None, reminders: List[CalendarReminder] = None, sequence_id: str = None, start_date: datetime = None, start_time_zone: str = None, status: str = None, summary: str = None, transparency: str = None, _class: str = None, microsoft_importance: str = None):
"""
iCalendar document representation.
:param attachments: Document attachments.
Expand Down Expand Up @@ -156,10 +152,6 @@ def __init__(self, attachments: List[Attachment] = None, attendees: List[MailAdd
:type _class: str
:param microsoft_importance: Specifies the importance of a calendar object. Enum, available values: Low, Normal, High, NotDefined
:type microsoft_importance: str
:param html_description: HTML representation of description.
:type html_description: str
:param date_time_stamp: Date/time that the instance of the iCalendar object was created.
:type date_time_stamp: datetime
"""

self._attachments = None
Expand All @@ -186,8 +178,6 @@ def __init__(self, attachments: List[Attachment] = None, attendees: List[MailAdd
self._transparency = None
self.__class = None
self._microsoft_importance = None
self._html_description = None
self._date_time_stamp = None

if attachments is not None:
self.attachments = attachments
Expand Down Expand Up @@ -237,10 +227,6 @@ def __init__(self, attachments: List[Attachment] = None, attendees: List[MailAdd
self._class = _class
if microsoft_importance is not None:
self.microsoft_importance = microsoft_importance
if html_description is not None:
self.html_description = html_description
if date_time_stamp is not None:
self.date_time_stamp = date_time_stamp


@property
Expand Down Expand Up @@ -751,48 +737,6 @@ def microsoft_importance(self, microsoft_importance: str):
raise ValueError("Invalid value for `microsoft_importance`, must not be `None`")
self._microsoft_importance = microsoft_importance

@property
def html_description(self) -> str:
"""
HTML representation of description.
:return: The html_description of this CalendarDto.
:rtype: str
"""
return self._html_description

@html_description.setter
def html_description(self, html_description: str):
"""
HTML representation of description.
:param html_description: The html_description of this CalendarDto.
:type: str
"""
self._html_description = html_description

@property
def date_time_stamp(self) -> datetime:
"""
Date/time that the instance of the iCalendar object was created.
:return: The date_time_stamp of this CalendarDto.
:rtype: datetime
"""
return self._date_time_stamp

@date_time_stamp.setter
def date_time_stamp(self, date_time_stamp: datetime):
"""
Date/time that the instance of the iCalendar object was created.
:param date_time_stamp: The date_time_stamp of this CalendarDto.
:type: datetime
"""
if date_time_stamp is None:
raise ValueError("Invalid value for `date_time_stamp`, must not be `None`")
self._date_time_stamp = date_time_stamp

def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdk/setup.py
Expand Up @@ -8,7 +8,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "aspose-email-cloud"
VERSION = "21.9.0.0"
VERSION = "21.9.0.34"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit 80bf6d4

Please sign in to comment.