File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
twilio/rest/verify/v2/service/entity/challenge Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,16 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+ [ 2021-06-02] Version 6.59.1
7
+ ---------------------------
8
+ ** Events**
9
+ - join Sinks and Subscriptions service
10
+
11
+ ** Verify**
12
+ - Improved the documentation of ` challenge ` adding the maximum and minimum expected lengths of some fields.
13
+ - Improve documentation regarding ` notification ` by updating the documentation of the field ` ttl ` .
14
+
15
+
6
16
[ 2021-05-19] Version 6.59.0
7
17
---------------------------
8
18
** Events**
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def create(self, ttl=values.unset):
39
39
"""
40
40
Create the NotificationInstance
41
41
42
- :param unicode ttl: How long, in seconds, the Notification is valid.
42
+ :param unicode ttl: How long, in seconds, the notification is valid.
43
43
44
44
:returns: The created NotificationInstance
45
45
:rtype: twilio.rest.verify.v2.service.entity.challenge.notification.NotificationInstance
@@ -196,15 +196,15 @@ def challenge_sid(self):
196
196
@property
197
197
def priority (self ):
198
198
"""
199
- :returns: The priority of the Notification .
199
+ :returns: The priority of the notification .
200
200
:rtype: unicode
201
201
"""
202
202
return self ._properties ['priority' ]
203
203
204
204
@property
205
205
def ttl (self ):
206
206
"""
207
- :returns: How long, in seconds, the Notification is valid.
207
+ :returns: How long, in seconds, the notification is valid.
208
208
:rtype: unicode
209
209
"""
210
210
return self ._properties ['ttl' ]
You can’t perform that action at this time.
0 commit comments