Skip to content

Commit 3a554ec

Browse files
authored
Release 1.32.1. For changelog, check CHANGELOG.rst
1 parent 5a7b1ba commit 3a554ec

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

ask-sdk-model/CHANGELOG.rst

+7
Original file line numberDiff line numberDiff line change
@@ -412,3 +412,10 @@ This release contains the following changes :
412412
This release contains the following changes :
413413

414414
- Models and support for `App Link Interfaces <https://developer.amazon.com/en-US/docs/alexa/alexa-for-apps/skill-connection-request-reference.html>`__.
415+
416+
1.32.1
417+
^^^^^^
418+
419+
This release contains the following changes :
420+
421+
- Updated model definitions for reminder_management

ask-sdk-model/ask_sdk_model/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
__pip_package_name__ = 'ask-sdk-model'
1515
__description__ = 'The ASK SDK Model package provides model definitions, for building Alexa Skills.'
1616
__url__ = 'https://github.com/alexa/alexa-apis-for-python'
17-
__version__ = '1.32.0'
17+
__version__ = '1.32.1'
1818
__author__ = 'Alexa Skills Kit'
1919
__author_email__ = '[email protected]'
2020
__license__ = 'Apache 2.0'

ask-sdk-model/ask_sdk_model/services/reminder_management/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
from .reminder_management_service_client import ReminderManagementServiceClient
1818
from .reminder_updated_event_request import ReminderUpdatedEventRequest
19+
from .spoken_info import SpokenInfo
1920
from .recurrence_day import RecurrenceDay
2021
from .event import Event
2122
from .reminder_status_changed_event_request import ReminderStatusChangedEventRequest
@@ -33,7 +34,6 @@
3334
from .push_notification_status import PushNotificationStatus
3435
from .trigger_type import TriggerType
3536
from .push_notification import PushNotification
36-
from .alert_info_spoken_info import AlertInfoSpokenInfo
3737
from .get_reminder_response import GetReminderResponse
3838
from .recurrence_freq import RecurrenceFreq
3939
from .status import Status

ask-sdk-model/ask_sdk_model/services/reminder_management/alert_info.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
if typing.TYPE_CHECKING:
2424
from typing import Dict, List, Optional, Union, Any
2525
from datetime import datetime
26-
from ask_sdk_model.services.reminder_management.alert_info_spoken_info import AlertInfoSpokenInfo as AlertInfoSpokenInfo_3eafce07
26+
from ask_sdk_model.services.reminder_management.alert_info_spoken_info import SpokenInfo as SpokenInfo_e1d2a971
2727

2828

2929
class AlertInfo(object):
@@ -32,11 +32,11 @@ class AlertInfo(object):
3232
3333
3434
:param spoken_info:
35-
:type spoken_info: (optional) ask_sdk_model.services.reminder_management.alert_info_spoken_info.AlertInfoSpokenInfo
35+
:type spoken_info: (optional) ask_sdk_model.services.reminder_management.alert_info_spoken_info.SpokenInfo
3636
3737
"""
3838
deserialized_types = {
39-
'spoken_info': 'ask_sdk_model.services.reminder_management.alert_info_spoken_info.AlertInfoSpokenInfo'
39+
'spoken_info': 'ask_sdk_model.services.reminder_management.alert_info_spoken_info.SpokenInfo'
4040
} # type: Dict
4141

4242
attribute_map = {
@@ -45,11 +45,11 @@ class AlertInfo(object):
4545
supports_multiple_types = False
4646

4747
def __init__(self, spoken_info=None):
48-
# type: (Optional[AlertInfoSpokenInfo_3eafce07]) -> None
48+
# type: (Optional[SpokenInfo_e1d2a971]) -> None
4949
"""Alert info for VUI / GUI
5050
5151
:param spoken_info:
52-
:type spoken_info: (optional) ask_sdk_model.services.reminder_management.alert_info_spoken_info.AlertInfoSpokenInfo
52+
:type spoken_info: (optional) ask_sdk_model.services.reminder_management.alert_info_spoken_info.SpokenInfo
5353
"""
5454
self.__discriminator_value = None # type: str
5555

ask-sdk-model/ask_sdk_model/services/reminder_management/alert_info_spoken_info.py ask-sdk-model/ask_sdk_model/services/reminder_management/spoken_info.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from ask_sdk_model.services.reminder_management.spoken_text import SpokenText as SpokenText_b927b411
2727

2828

29-
class AlertInfoSpokenInfo(object):
29+
class SpokenInfo(object):
3030
"""
3131
Parameters for VUI presentation of the reminder
3232
@@ -98,7 +98,7 @@ def __repr__(self):
9898
def __eq__(self, other):
9999
# type: (object) -> bool
100100
"""Returns true if both objects are equal"""
101-
if not isinstance(other, AlertInfoSpokenInfo):
101+
if not isinstance(other, SpokenInfo):
102102
return False
103103

104104
return self.__dict__ == other.__dict__

0 commit comments

Comments
 (0)