10000 [Librarian] Regenerated @ b894abe9525247ea4345d78891244817d397f6de f8… · twilio/twilio-csharp@5387998 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5387998

Browse files
committed
[Librarian] Regenerated @ b894abe9525247ea4345d78891244817d397f6de f80058eb415516baff0287784518c3a22be1b1b6
1 parent f72f58b commit 5387998

File tree

16 files changed

+157
-64
lines changed

16 files changed

+157
-64
lines changed

CHANGES.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
11
twilio-csharp Changelog
22
=======================
33

4+
[2024-04-04] Version 7.0.4
5+
--------------------------
6+
**Api**
7+
- Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
8+
9+
**Flex**
10+
- Remove optional parameter from `plugins` and it to `plugin_versions`
11+
12+
**Lookups**
13+
- Add new `pre_fill` package to the lookup response
14+
15+
**Messaging**
16+
- Cleanup api.messaging.next-gen from Messaging Services endpoints
17+
- Readd Sending-Window after fixing test failure
18+
19+
**Verify**
20+
- Add `whatsapp.msg_service_sid` and `whatsapp.from` parameters to create, update, get and list of services endpoints
21+
22+
**Voice**
23+
- Correct conference filtering by date_created and date_updated documentation, clarifying that times are UTC.
24+
25+
**Twiml**
26+
- Add new `token_type` value `payment-method` for `Pay` verb
27+
28+
429
[2024-04-01] Version 7.0.3
530
--------------------------
631
**Library - Chore**

src/Twilio/Rest/Api/V2010/Account/Call/PaymentResource.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ public static implicit operator TokenTypeEnum(string value)
6666
}
6767
public static readonly TokenTypeEnum OneTime = new TokenTypeEnum("one-time");
6868
public static readonly TokenTypeEnum Reusable = new TokenTypeEnum("reusable");
69+
public static readonly TokenTypeEnum PaymentMethod = new TokenTypeEnum("payment-method");
6970

7071
}
7172
public sealed class BankAccountTypeEnum : StringEnum

src/Twilio/Rest/Api/V2010/Account/ConferenceOptions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,22 +63,22 @@ public class ReadConferenceOptions : ReadOptions<ConferenceResource>
6363
///<summary> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Conference resource(s) to read. </summary>
6464
public string PathAccountSid { get; set; }
6565

66-
///<summary> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </summary>
66+
///<summary> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </summary>
6767
public DateTime? DateCreated { get; set; }
6868

69-
///<summary> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </summary>
69+
///<summary> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </summary>
7070
public DateTime? DateCreatedBefore { get; set; }
7171

72-
///<summary> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </summary>
72+
///<summary> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </summary>
7373
public DateTime? DateCreatedAfter { get; set; }
7474

75-
///<summary> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </summary>
75+
///<summary> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </summary>
7676
public DateTime? DateUpdated { get; set; }
7777

78-
///<summary> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </summary>
78+
///<summary> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </summary>
7979
public DateTime? DateUpdatedBefore { get; set; }
8080

81-
///<summary> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </summary>
81+
///<summary> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </summary>
8282
public DateTime? DateUpdatedAfter { get; set; }
8383

8484
///<summary> The string that identifies the Conference resources to read. </summary>

src/Twilio/Rest/Api/V2010/Account/ConferenceResource.cs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,12 @@ public static async System.Threading.Tasks.Task<ResourceSet<ConferenceResource>>
190190
#endif
191191
/// <summary> Retrieve a list of conferences belonging to the account used to make the request </summary>
192192
/// <param name="pathAccountSid"> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Conference resource(s) to read. </param>
193-
/// <param name="dateCreatedBefore"> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </param>
194-
/// <param name="dateCreated"> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </param>
195-
/// <param name="dateCreatedAfter"> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </param>
196-
/// <param name="dateUpdatedBefore"> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </param>
197-
// 10000 / <param name="dateUpdated"> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </param>
198-
/// <param name="dateUpdatedAfter"> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </param>
193+
/// <param name="dateCreatedBefore"> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </param>
194+
/// <param name="dateCreated"> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </param>
195+
/// <param name="dateCreatedAfter"> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </param>
196+
/// <param name="dateUpdatedBefore"> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </param>
197+
/// <param name="dateUpdated"> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </param>
198+
/// <param name="dateUpdatedAfter"> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </param>
199199
/// <param name="friendlyName"> The string that identifies the Conference resources to read. </param>
200200
/// <param name="status"> The status of the resources to read. Can be: `init`, `in-progress`, or `completed`. </param>
201201
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
@@ -223,12 +223,12 @@ public static ResourceSet<ConferenceResource> Read(
223223
#if !NET35
224224
/// <summary> Retrieve a list of conferences belonging to the account used to make the request </summary>
225225
/// <param name="pathAccountSid"> The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the Conference resource(s) to read. </param>
226-
/// <param name="dateCreatedBefore"> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </param>
227-
/// <param name="dateCreated"> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </param>
228-
/// <param name="dateCreatedAfter"> The `date_created` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that started on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that started on or after midnight on a date, use `>=YYYY-MM-DD`. </param>
229-
/// <param name="dateUpdatedBefore"> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </param>
230-
/// <param name="dateUpdated"> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </param>
231-
/// <param name="dateUpdatedAfter"> The `date_updated` value, specified as `YYYY-MM-DD`, of the resources to read. To read conferences that were last updated on or before midnight on a date, use `<=YYYY-MM-DD`, and to specify conferences that were last updated on or after midnight on a given date, use `>=YYYY-MM-DD`. </param>
226+
/// <param name="dateCreatedBefore"> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </param>
227+
/// <param name="dateCreated"> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </param>
228+
/// <param name="dateCreatedAfter"> Only include conferences that were created on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were created on this date. You can also specify an inequality, such as `DateCreated<=YYYY-MM-DD`, to read conferences that were created on or before midnight of this date, and `DateCreated>=YYYY-MM-DD` to read conferences that were created on or after midnight of this date. </param>
229+
/// <param name="dateUpdatedBefore"> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </param>
230+
/// <param name="dateUpdated"> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </param>
231+
/// <param name="dateUpdatedAfter"> Only include conferences that were last updated on this date. Specify a date as `YYYY-MM-DD` in UTC, for example: `2009-07-06`, to read only conferences that were last updated on this date. You can also specify an inequality, such as `DateUpdated<=YYYY-MM-DD`, to read conferences that were last updated on or before midnight of this date, and `DateUpdated>=YYYY-MM-DD` to read conferences that were last updated on or after midnight of this date. </param>
232232
/// <param name="friendlyName"> The string that identifies the Conference resources to read. </param>
233233
/// <param name="status"> The status of the resources to read. Can be: `init`, `in-progress`, or `completed`. </param>
234234
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
@@ -427,27 +427,27 @@ public static string ToJson(object model)
427427
[JsonProperty("account_sid")]
428428
public string AccountSid { get; private set; }
429429

430-
///<summary> The date and time in GMT that this resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format. </summary>
430+
///<summary> The date and time in UTC that this resource was created specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format. </summary>
431431
[JsonProperty("date_created")]
432432
public DateTime? DateCreated { get; private set; }
433433

434-
///<summary> The date and time in GMT that this resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format. </summary>
434+
///<summary> The date and time in UTC that this resource was last updated, specified in [RFC 2822](https://www.ietf.org/rfc/rfc2822.txt) format. </summary>
435435
[JsonProperty("date_updated")]
436436
public DateTime? DateUpdated { get; private set; }
437437

438438
///<summary> The API version used to create this conference. </summary>
439439
[JsonProperty("api_version")]
440440
public string ApiVersion { get; private set; }
441441

442-
///<summary> A string that you assigned to describe this conference room. Maxiumum length is 128 characters. </summary>
442+
///<summary> A string that you assigned to describe this conference room. Maximum length is 128 characters. </summary>
443443
[JsonProperty("friendly_name")]
444444
public string FriendlyName { get; private set; }
445445

446446
///<summary> A string that represents the Twilio Region where the conference audio was mixed. May be `us1`, `ie1`, `de1`, `sg1`, `br1`, `au1`, and `jp1`. Basic conference audio will always be mixed in `us1`. Global Conference audio will be mixed nearest to the majority of participants. </summary>
447447
[JsonProperty("region")]
448448
public string Region { get; private set; }
449449

450-
///<summary> The unique string that that we created to identify this Conference resource. </summary>
450+
///<summary> The unique, Twilio-provided string used to identify this Conference resource. </summary>
451451
[JsonProperty("sid")]
452452
public string Sid { get; private set; }
453453

0 commit comments

Comments
 (0)
0