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: CHANGES.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,30 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+
[2024-06-18] Version 9.2.0
7
+
--------------------------
8
+
**Library - Chore**
9
+
-[PR #796](https://github.com/twilio/twilio-python/pull/796): adding contentType in post and put. Thanks to [@tiwarishubham635](https://github.com/tiwarishubham635)!
10
+
11
+
**Events**
12
+
- Add `status` and `documentation_url` to Event Types
13
+
14
+
**Lookups**
15
+
- Removed unused `fraud` lookups in V1 only to facilitate rest proxy migration
16
+
17
+
**Numbers**
18
+
- Add date_created field to the Get Port In Request API
19
+
- Rename the `status_last_time_updated_timestamp` field to `last_updated` in the Get Port In Phone Number API **(breaking change)**
20
+
- Add Rejection reason and rejection reason code to the Get Port In Phone Number API
21
+
- Remove the carrier information from the Portability API
22
+
23
+
**Proxy**
24
+
- Change property `type` from enum to ienum
25
+
26
+
**Trusthub**
27
+
- Add skipMessagingUseCase field in compliance_tollfree_inquiry.
:param phone_number: The phone number to be removed from SafeList. Phone numbers must be in [E.164 format](https://www.twilio.com/docs/glossary/what-e164).
109
107
:returns: True if delete succeeds, False otherwise
:param phone_number: The phone number to be removed from SafeList. Phone numbers must be in [E.164 format](https://www.twilio.com/docs/glossary/what-e164).
126
127
:returns: True if delete succeeds, False otherwise
:param phone_number: The phone number to be fetched from SafeList. Phone numbers must be in [E.164 format](https://www.twilio.com/docs/glossary/what-e164).
:param phone_number: The phone number to be fetched from SafeList. Phone numbers must be in [E.164 format](https://www.twilio.com/docs/glossary/what-e164).
Copy file name to clipboardExpand all lines: twilio/rest/api/v2010/account/call/__init__.py
+5-7Lines changed: 5 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ class UpdateStatus(object):
65
65
:ivar start_time: The start time of the call, given as UTC in [RFC 2822](https://www.php.net/manual/en/class.datetime.php#datetime.constants.rfc2822) format. Empty if the call has not yet been dialed.
66
66
:ivar end_time: The time the call ended, given as UTC in [RFC 2822](https://www.php.net/manual/en/class.datetime.php#datetime.constants.rfc2822) format. Empty if the call did not complete successfully.
67
67
:ivar duration: The length of the call in seconds. This value is empty for busy, failed, unanswered, or ongoing calls.
68
-
:ivar price: The charge for this call, in the currency associated with the account. Populated after the call is completed. May not be immediately available.
68
+
:ivar price: The charge for this call, in the currency associated with the account. Populated after the call is completed. May not be immediately available. The price associated with a call only reflects the charge for connectivity. Charges for other call-related features such as Answering Machine Detection, Text-To-Speech, and SIP REFER are not included in this value.
69
69
:ivar price_unit: The currency in which `Price` is measured, in [ISO 4127](https://www.iso.org/iso/home/standards/currency_codes.htm) format (e.g., `USD`, `EUR`, `JPY`). Always capitalized for calls.
70
70
:ivar direction: A string describing the direction of the call. Can be: `inbound` for inbound calls, `outbound-api` for calls initiated via the REST API or `outbound-dial` for calls initiated by a `<Dial>` verb. Using [Elastic SIP Trunking](https://www.twilio.com/docs/sip-trunking), the values can be [`trunking-terminating`](https://www.twilio.com/docs/sip-trunking#termination) for outgoing calls from your communications infrastructure to the PSTN or [`trunking-originating`](https://www.twilio.com/docs/sip-trunking#origination) for incoming calls to your communications infrastructure from the PSTN.
71
71
:ivar answered_by: Either `human` or `machine` if this call was initiated with answering machine detection. Empty otherwise.
0 commit comments