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 4a68d04 commit 29411ae
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 40 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
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
33 changes: 5 additions & 28 deletions lib/aspose-email-cloud/models/calendar_dto.rb
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,6 @@ class CalendarDto
# Specifies the importance of a calendar object. Enum, available values: Low, Normal, High, NotDefined
# @return [String]
attr_accessor :microsoft_importance
# HTML representation of description.
# @return [String]
attr_accessor :html_description
# Date/time that the instance of the iCalendar object was created.
# @return [DateTime]
attr_accessor :date_time_stamp
# Attribute mapping from ruby-style variable name to JSON key.
def self.attribute_map
{
Expand All @@ -132,9 +126,7 @@ def self.attribute_map
:'summary' => :'summary',
:'transparency' => :'transparency',
:'_class' => :'class',
:'microsoft_importance' => :'microsoftImportance',
:'html_description' => :'htmlDescription',
:'date_time_stamp' => :'dateTimeStamp'
:'microsoft_importance' => :'microsoftImportance'
}
end

Expand Down Expand Up @@ -164,9 +156,7 @@ def self.swagger_types
:'summary' => :'String',
:'transparency' => :'String',
:'_class' => :'String',
:'microsoft_importance' => :'String',
:'html_description' => :'String',
:'date_time_stamp' => :'DateTime'
:'microsoft_importance' => :'String'
}
end

Expand Down Expand Up @@ -195,8 +185,6 @@ def self.swagger_types
# @param [String] transparency Specifies whether or not this appointment is intended to be visible in availability searches. Enum, available values: NotDefined, Transparent, Opaque
# @param [String] _class Defines the access classification for the calendar. Enum, available values: Public, Private, Confidential, NotDefined
# @param [String] microsoft_importance Specifies the importance of a calendar object. Enum, available values: Low, Normal, High, NotDefined
# @param [String] html_description HTML representation of description.
# @param [DateTime] date_time_stamp Date/time that the instance of the iCalendar object was created.
def initialize(
attachments: nil,
attendees: nil,
Expand All @@ -221,9 +209,7 @@ def initialize(
summary: nil,
transparency: nil,
_class: nil,
microsoft_importance: nil,
html_description: nil,
date_time_stamp: nil)
microsoft_importance: nil)
self.attachments = attachments if attachments
self.attendees = attendees if attendees
self.description = description if description
Expand All @@ -248,8 +234,6 @@ def initialize(
self.transparency = transparency if transparency
self._class = _class if _class
self.microsoft_importance = microsoft_importance if microsoft_importance
self.html_description = html_description if html_description
self.date_time_stamp = date_time_stamp if date_time_stamp
end

# Show invalid properties with the reasons. Usually used together with valid?
Expand Down Expand Up @@ -312,10 +296,6 @@ def list_invalid_properties
invalid_properties.push('invalid value for "microsoft_importance", microsoft_importance cannot be nil.')
end

if @date_time_stamp.nil?
invalid_properties.push('invalid value for "date_time_stamp", date_time_stamp cannot be nil.')
end

invalid_properties
end

Expand All @@ -336,7 +316,6 @@ def valid?
return false if @transparency.nil?
return false if @_class.nil?
return false if @microsoft_importance.nil?
return false if @date_time_stamp.nil?
true
end

Expand Down Expand Up @@ -382,9 +361,7 @@ def ==(o)
summary == o.summary &&
transparency == o.transparency &&
_class == o._class &&
microsoft_importance == o.microsoft_importance &&
html_description == o.html_description &&
date_time_stamp == o.date_time_stamp
microsoft_importance == o.microsoft_importance
end

# @see the `==` method
Expand All @@ -396,7 +373,7 @@ def eql?(o)
# Calculates hash code according to all attributes.
# @return [Fixnum] Hash code
def hash
[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, html_description, date_time_stamp].hash
[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
end

# Builds the object from hash
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/aspose-email-cloud/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
=end

module AsposeEmailCloud
VERSION = '21.9.0.152'
VERSION = '21.9.0.34'
end

0 comments on commit 29411ae

Please sign in to comment.