Skip to content

Commit

Permalink
Release 1.32.1. For changelog, check CHANGELOG.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Shreyas-vgr committed Nov 17, 2021
1 parent 5a7b1ba commit 3a554ec
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions ask-sdk-model/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -412,3 +412,10 @@ This release contains the following changes :
This release contains the following changes :

- Models and support for `App Link Interfaces <https://developer.amazon.com/en-US/docs/alexa/alexa-for-apps/skill-connection-request-reference.html>`__.

1.32.1
^^^^^^

This release contains the following changes :

- Updated model definitions for reminder_management
2 changes: 1 addition & 1 deletion ask-sdk-model/ask_sdk_model/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__pip_package_name__ = 'ask-sdk-model'
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
__version__ = '1.32.0'
__version__ = '1.32.1'
__author__ = 'Alexa Skills Kit'
__author_email__ = 'ask-sdk-dynamic@amazon.com'
__license__ = 'Apache 2.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

from .reminder_management_service_client import ReminderManagementServiceClient
from .reminder_updated_event_request import ReminderUpdatedEventRequest
from .spoken_info import SpokenInfo
from .recurrence_day import RecurrenceDay
from .event import Event
from .reminder_status_changed_event_request import ReminderStatusChangedEventRequest
Expand All @@ -33,7 +34,6 @@
from .push_notification_status import PushNotificationStatus
from .trigger_type import TriggerType
from .push_notification import PushNotification
from .alert_info_spoken_info import AlertInfoSpokenInfo
from .get_reminder_response import GetReminderResponse
from .recurrence_freq import RecurrenceFreq
from .status import Status
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
if typing.TYPE_CHECKING:
from typing import Dict, List, Optional, Union, Any
from datetime import datetime
from ask_sdk_model.services.reminder_management.alert_info_spoken_info import AlertInfoSpokenInfo as AlertInfoSpokenInfo_3eafce07
from ask_sdk_model.services.reminder_management.alert_info_spoken_info import SpokenInfo as SpokenInfo_e1d2a971


class AlertInfo(object):
Expand All @@ -32,11 +32,11 @@ class AlertInfo(object):
:param spoken_info:
:type spoken_info: (optional) ask_sdk_model.services.reminder_management.alert_info_spoken_info.AlertInfoSpokenInfo
:type spoken_info: (optional) ask_sdk_model.services.reminder_management.alert_info_spoken_info.SpokenInfo
"""
deserialized_types = {
'spoken_info': 'ask_sdk_model.services.reminder_management.alert_info_spoken_info.AlertInfoSpokenInfo'
'spoken_info': 'ask_sdk_model.services.reminder_management.alert_info_spoken_info.SpokenInfo'
} # type: Dict

attribute_map = {
Expand All @@ -45,11 +45,11 @@ class AlertInfo(object):
supports_multiple_types = False

def __init__(self, spoken_info=None):
# type: (Optional[AlertInfoSpokenInfo_3eafce07]) -> None
# type: (Optional[SpokenInfo_e1d2a971]) -> None
"""Alert info for VUI / GUI
:param spoken_info:
:type spoken_info: (optional) ask_sdk_model.services.reminder_management.alert_info_spoken_info.AlertInfoSpokenInfo
:type spoken_info: (optional) ask_sdk_model.services.reminder_management.alert_info_spoken_info.SpokenInfo
"""
self.__discriminator_value = None # type: str

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from ask_sdk_model.services.reminder_management.spoken_text import SpokenText as SpokenText_b927b411


class AlertInfoSpokenInfo(object):
class SpokenInfo(object):
"""
Parameters for VUI presentation of the reminder
Expand Down Expand Up @@ -98,7 +98,7 @@ def __repr__(self):
def __eq__(self, other):
# type: (object) -> bool
"""Returns true if both objects are equal"""
if not isinstance(other, AlertInfoSpokenInfo):
if not isinstance(other, SpokenInfo):
return False

return self.__dict__ == other.__dict__
Expand Down

0 comments on commit 3a554ec

Please sign in to comment.