Skip to content

Commit f4d58e7

Browse files
committed
[Librarian] Regenerated @ acaff69f3849fc058416823f752f47e53f0e412b
1 parent 4078131 commit f4d58e7

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6+
[2018-06-04] Version 6.14.4
7+
----------------------------
8+
**Lookups**
9+
- Add back support for `fraud` lookup type
10+
11+
612
[2018-05-25] Version 6.14.3
713
----------------------------
814
**Library**

tests/integration/lookups/v1/test_phone_number.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,15 @@ def test_fetch_response(self):
4242
"name": "verizon",
4343
"type": "mobile"
4444
},
45+
"fraud": {
46+
"error_code": null,
47+
"mobile_country_code": "310",
48+
"mobile_network_code": "456",
49+
"advanced_line_type": "voip",
50+
"caller_name": "Delicious Cheese Cake",
51+
"is_ported": false,
52+
"last_ported_date": "2018-05-01 04:05:11"
53+
},
4554
"country_code": "US",
4655
"national_format": "(510) 867-5309",
4756
"phone_number": "+15108675309",

twilio/rest/preview/understand/assistant/field_type/field_value.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def create(self, language, value, synonym_of=values.unset):
131131
132132
:param unicode language: An ISO language-country string of the value.
133133
:param unicode value: A user-provided string that uniquely identifies this resource as an alternative to the sid. Unique up to 64 characters long.
134-
:param unicode synonym_of: The synonym_of
134+
:param unicode synonym_of: A value that indicates this field value is a synonym of. Empty if the value is not a synonym.
135135
136136
:returns: Newly created FieldValueInstance
137137
:rtype: twilio.rest.preview.understand.assistant.field_type.field_value.FieldValueInstance
@@ -420,7 +420,7 @@ def sid(self):
420420
@property
421421
def value(self):
422422
"""
423-
:returns: The value
423+
:returns: The Field Value itself.
424424
:rtype: unicode
425425
"""
426426
return self._properties['value']
@@ -436,7 +436,7 @@ def url(self):
436436
@property
437437
def synonym_of(self):
438438
"""
439-
:returns: The synonym_of
439+
:returns: A value that indicates this field value is a synonym of. Empty if the value is not a synonym.
440440
:rtype: unicode
441441
"""
442442
return self._properties['synonym_of']

twilio/rest/video/v1/composition/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def stream(self, status=values.unset, date_created_after=values.unset,
4747
:param CompositionInstance.Status status: Only show Compositions with the given status.
4848
:param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
4949
:param datetime date_created_before: Only show Compositions that started before this this ISO8601 date-time.
50-
:param unicode room_sid: The room_sid
50+
:param unicode room_sid: Only show Compositions with the given Room SID.
5151
:param int limit: Upper limit for the number of records to return. stream()
5252
guarantees to never return more than limit. Default is no limit
5353
:param int page_size: Number of records to fetch per request, when not set will use
@@ -81,7 +81,7 @@ def list(self, status=values.unset, date_created_after=values.unset,
8181
:param CompositionInstance.Status status: Only show Compositions with the given status.
8282
:param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
8383
:param datetime date_created_before: Only show Compositions that started before this this ISO8601 date-time.
84-
:param unicode room_sid: The room_sid
84+
:param unicode room_sid: Only show Compositions with the given Room SID.
8585
:param int limit: Upper limit for the number of records to return. list() guarantees
8686
never to return more than limit. Default is no limit
8787
:param int page_size: Number of records to fetch per request, when not set will use
@@ -112,7 +112,7 @@ def page(self, status=values.unset, date_created_after=values.unset,
112112
:param CompositionInstance.Status status: Only show Compositions with the given status.
113113
:param datetime date_created_after: Only show Compositions that started on or after this ISO8601 date-time.
114114
:param datetime date_created_before: Only show Compositions that started before this this ISO8601 date-time.
115-
:param unicode room_sid: The room_sid
115+
:param unicode room_sid: Only show Compositions with the given Room SID.
116116
:param str page_token: PageToken provided by the API
117117
:param int page_number: Page Number, this value is simply for client state
118118
:param int page_size: Number of records to return, defaults to 50
@@ -168,7 +168,7 @@ def create(self, room_sid=values.unset, video_layout=values.unset,
168168
:param unicode audio_sources: A list of audio sources related to this Composition.
169169
:param unicode audio_sources_excluded: A list of audio sources excluded related to this Composition.
170170
:param unicode resolution: Pixel resolution of the composed video.
171-
:param CompositionInstance.Format format: ontainer format of the Composition media file. Any of the following: `mp4`, `webm`.
171+
:param CompositionInstance.Format format: Container format of the Composition media file. Any of the following: `mp4`, `webm`.
172172
:param unicode status_callback: A URL that Twilio sends asynchronous webhook requests to on every composition event.
173173
:param unicode status_callback_method: HTTP method Twilio should use when requesting the above URL.
174174
:param bool trim: Boolean flag for clipping intervals that have no media.

0 commit comments

Comments
 (0)