You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: ask-sdk-model/CHANGELOG.rst
+10
Original file line number
Diff line number
Diff line change
@@ -197,3 +197,13 @@ This release contains the following changes :
197
197
This release contains the following changes :
198
198
199
199
- Models for `Skill Connections <https://developer.amazon.com/docs/custom-skills/skill-connections.html>`__. With the Skill Connections feature, you can enable an Alexa skill to fulfill a customer request that it can't otherwise handle by forwarding the request to another skill for fulfillment.
200
+
201
+
202
+
1.14.0
203
+
~~~~~~~
204
+
205
+
This release contains the following changes :
206
+
207
+
- Models for [Custom interfaces](https://developer.amazon.com/docs/alexa-gadgets-toolkit-preview/custom-interface.html). The custom interfaces feature enables Alexa Skill Developers to implement interactions between skills and gadgets using developer-defined directives and events.
208
+
209
+
- Added BillingAgreementType and SubscriptionAmount in BillingAgreementAttributes. This change is mandatory for skills in EU, and optional for NA and JP. With this upgrade, skill developers in EU can enjoy full benefits of the Amazon Pay solution that supports PSD2.
"""The merchant can choose to set the attributes specified in the BillingAgreementAttributes.
64
74
65
75
:param platform_id: Represents the SellerId of the Solution Provider that developed the eCommerce platform. This value is only used by Solution Providers, for whom it is required. It should not be provided by merchants creating their own custom integration. Do not specify the SellerId of the merchant for this request parameter. If you are a merchant, do not enter a PlatformId.
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5
+
#
6
+
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
7
+
# except in compliance with the License. A copy of the License is located at
8
+
#
9
+
# http://aws.amazon.com/apache2.0/
10
+
#
11
+
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
12
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
13
+
# the specific language governing permissions and limitations under the License.
14
+
#
15
+
16
+
importpprint
17
+
importre# noqa: F401
18
+
importsix
19
+
importtyping
20
+
fromenumimportEnum
21
+
22
+
23
+
iftyping.TYPE_CHECKING:
24
+
fromtypingimportDict, List, Optional, Union
25
+
fromdatetimeimportdatetime
26
+
27
+
28
+
classBillingAgreementType(Enum):
29
+
"""
30
+
* This is used to specify applicable billing agreement type. * CustomerInitiatedTransaction – customer is present at the time of processing payment for the order. * MerchantInitiatedTransaction – customer is not present at the time of processing payment for the order.
"""The merchant can choose to set the attributes specified in the BillingAgreementAttributes.
57
67
58
68
:param platform_id: Represents the SellerId of the Solution Provider that developed the eCommerce platform. This value is only used by Solution Providers, for whom it is required. It should not be provided by merchants creating their own custom integration. Do not specify the SellerId of the merchant for this request parameter. If you are a merchant, do not enter a PlatformId.
# Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5
+
#
6
+
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file
7
+
# except in compliance with the License. A copy of the License is located at
8
+
#
9
+
# http://aws.amazon.com/apache2.0/
10
+
#
11
+
# or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
12
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for
13
+
# the specific language governing permissions and limitations under the License.
14
+
#
15
+
16
+
importpprint
17
+
importre# noqa: F401
18
+
importsix
19
+
importtyping
20
+
fromenumimportEnum
21
+
22
+
23
+
iftyping.TYPE_CHECKING:
24
+
fromtypingimportDict, List, Optional, Union
25
+
fromdatetimeimportdatetime
26
+
27
+
28
+
classBillingAgreementType(Enum):
29
+
"""
30
+
* This is used to specify applicable billing agreement type. * CustomerInitiatedTransaction – customer is present at the time of processing payment for the order. * MerchantInitiatedTransaction – customer is not present at the time of processing payment for the order.
0 commit comments