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
///<summary> Start date in ISO8601 format for sorting and filtering list of Conversations. </summary>
195
+
///<summary> Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. </summary>
196
196
publicstringStartDate{get;set;}
197
197
198
-
///<summary> End date in ISO8601 format for sorting and filtering list of Conversations. </summary>
198
+
///<summary> End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. </summary>
199
199
publicstringEndDate{get;set;}
200
200
201
201
///<summary> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </summary>
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Conversations/V1/ConversationResource.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -336,8 +336,8 @@ public static async System.Threading.Tasks.Task<ResourceSet<ConversationResource
336
336
}
337
337
#endif
338
338
/// <summary> Retrieve a list of conversations in your account's default service </summary>
339
-
/// <param name="startDate"> Start date in ISO8601 format for sorting and filtering list of Conversations. </param>
340
-
/// <param name="endDate"> End date in ISO8601 format for sorting and filtering list of Conversations. </param>
339
+
/// <param name="startDate"> Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. </param>
340
+
/// <param name="endDate"> End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. </param>
341
341
/// <param name="state"> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </param>
342
342
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
343
343
/// <param name="limit"> Record limit </param>
@@ -357,8 +357,8 @@ public static ResourceSet<ConversationResource> Read(
357
357
358
358
#if !NET35
359
359
/// <summary> Retrieve a list of conversations in your account's default service </summary>
360
-
/// <param name="startDate"> Start date in ISO8601 format for sorting and filtering list of Conversations. </param>
361
-
/// <param name="endDate"> End date in ISO8601 format for sorting and filtering list of Conversations. </param>
360
+
/// <param name="startDate"> Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. </param>
361
+
/// <param name="endDate"> End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. </param>
362
362
/// <param name="state"> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </param>
363
363
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Conversations/V1/Service/ConversationOptions.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -214,10 +214,10 @@ public class ReadConversationOptions : ReadOptions<ConversationResource>
214
214
///<summary> The SID of the [Conversation Service](https://www.twilio.com/docs/conversations/api/service-resource) the Conversation resource is associated with. </summary>
215
215
publicstringPathChatServiceSid{get;}
216
216
217
-
///<summary> Start date in ISO8601 format for sorting and filtering list of Conversations. </summary>
217
+
///<summary> Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. </summary>
218
218
publicstringStartDate{get;set;}
219
219
220
-
///<summary> End date in ISO8601 format for sorting and filtering list of Conversations. </summary>
220
+
///<summary> End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. </summary>
221
221
publicstringEndDate{get;set;}
222
222
223
223
///<summary> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </summary>
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Conversations/V1/Service/ConversationResource.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -354,8 +354,8 @@ public static async System.Threading.Tasks.Task<ResourceSet<ConversationResource
354
354
#endif
355
355
/// <summary> Retrieve a list of conversations in your service </summary>
356
356
/// <param name="pathChatServiceSid"> The SID of the [Conversation Service](https://www.twilio.com/docs/conversations/api/service-resource) the Conversation resource is associated with. </param>
357
-
/// <param name="startDate"> Start date in ISO8601 format for sorting and filtering list of Conversations. </param>
358
-
/// <param name="endDate"> End date in ISO8601 format for sorting and filtering list of Conversations. </param>
357
+
/// <param name="startDate"> Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. </param>
358
+
/// <param name="endDate"> End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. </param>
359
359
/// <param name="state"> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </param>
360
360
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
361
361
/// <param name="limit"> Record limit </param>
@@ -377,8 +377,8 @@ public static ResourceSet<ConversationResource> Read(
377
377
#if !NET35
378
378
/// <summary> Retrieve a list of conversations in your service </summary>
379
379
/// <param name="pathChatServiceSid"> The SID of the [Conversation Service](https://www.twilio.com/docs/conversations/api/service-resource) the Conversation resource is associated with. </param>
380
-
/// <param name="startDate"> Start date in ISO8601 format for sorting and filtering list of Conversations. </param>
381
-
/// <param name="endDate"> End date in ISO8601 format for sorting and filtering list of Conversations. </param>
380
+
/// <param name="startDate"> Start date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the start time of the date is used (YYYY-MM-DDT00:00:00Z). Can be combined with other filters. </param>
381
+
/// <param name="endDate"> End date or time in ISO8601 format for filtering list of Conversations. If a date is provided, the end time of the date is used (YYYY-MM-DDT23:59:59Z). Can be combined with other filters. </param>
382
382
/// <param name="state"> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </param>
383
383
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Messaging/V1/DomainConfigOptions.cs
+2-18Lines changed: 2 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@
17
17
usingSystem.Collections.Generic;
18
18
usingTwilio.Base;
19
19
usingTwilio.Converters;
20
-
usingSystem.Linq;
20
+
21
21
22
22
23
23
@@ -59,27 +59,19 @@ public class UpdateDomainConfigOptions : IOptions<DomainConfigResource>
59
59
///<summary> Unique string used to identify the domain that this config should be associated with. </summary>
60
60
publicstringPathDomainSid{get;}
61
61
62
-
///<summary> A list of messagingServiceSids (with prefix MG) </summary>
63
-
publicList<string>MessagingServiceSids{get;}
64
-
65
62
///<summary> Any requests we receive to this domain that do not match an existing shortened message will be redirected to the fallback url. These will likely be either expired messages, random misdirected traffic, or intentional scraping. </summary>
66
63
publicUriFallbackUrl{get;set;}
67
64
68
65
///<summary> URL to receive click events to your webhook whenever the recipients click on the shortened links </summary>
69
66
publicUriCallbackUrl{get;set;}
70
67
71
-
///<summary> An action type for messaging_service_sids operation (ADD, DELETE, REPLACE) </summary>
72
-
publicstringMessagingServiceSidsAction{get;set;}
73
-
74
68
75
69
76
70
/// <summary> Construct a new UpdateDomainConfigOptions </summary>
77
71
/// <param name="pathDomainSid"> Unique string used to identify the domain that this config should be associated with. </param>
78
-
/// <param name="messagingServiceSids"> A list of messagingServiceSids (with prefix MG) </param>
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Messaging/V1/DomainConfigResource.cs
+2-14Lines changed: 2 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -140,42 +140,34 @@ public static async System.Threading.Tasks.Task<DomainConfigResource> UpdateAsyn
140
140
141
141
/// <summary> update </summary>
142
142
/// <param name="pathDomainSid"> Unique string used to identify the domain that this config should be associated with. </param>
143
-
/// <param name="messagingServiceSids"> A list of messagingServiceSids (with prefix MG) </param>
144
143
/// <param name="fallbackUrl"> Any requests we receive to this domain that do not match an existing shortened message will be redirected to the fallback url. These will likely be either expired messages, random misdirected traffic, or intentional scraping. </param>
145
144
/// <param name="callbackUrl"> URL to receive click events to your webhook whenever the recipients click on the shortened links </param>
146
-
/// <param name="messagingServiceSidsAction"> An action type for messaging_service_sids operation (ADD, DELETE, REPLACE) </param>
147
145
/// <param name="client"> Client to make requests to Twilio </param>
148
146
/// <returns> A single instance of DomainConfig </returns>
/// <param name="pathDomainSid"> Unique string used to identify the domain that this config should be associated with. </param>
164
-
/// <param name="messagingServiceSids"> A list of messagingServiceSids (with prefix MG) </param>
165
160
/// <param name="fallbackUrl"> Any requests we receive to this domain that do not match an existing shortened message will be redirected to the fallback url. These will likely be either expired messages, random misdirected traffic, or intentional scraping. </param>
166
161
/// <param name="callbackUrl"> URL to receive click events to your webhook whenever the recipients click on the shortened links </param>
167
-
/// <param name="messagingServiceSidsAction"> An action type for messaging_service_sids operation (ADD, DELETE, REPLACE) </param>
168
162
/// <param name="client"> Client to make requests to Twilio </param>
169
163
/// <returns> Task that resolves to A single instance of DomainConfig </returns>
///<summary> Any requests we receive to this domain that do not match an existing shortened message will be redirected to the fallback url. These will likely be either expired messages, random misdirected traffic, or intentional scraping. </summary>
///<summary> A descriptive string that you create to describe the verification service. It can be up to 30 characters long. **This value should not contain PII.** </summary>
31
+
///<summary> A descriptive string that you create to describe the verification service. It can be up to 32 characters long. **This value should not contain PII.** </summary>
32
32
publicstringFriendlyName{get;}
33
33
34
34
///<summary> The length of the verification code to generate. Must be an integer value between 4 and 10, inclusive. </summary>
@@ -81,7 +81,7 @@ public class CreateServiceOptions : IOptions<ServiceResource>
81
81
82
82
83
83
/// <summary> Construct a new CreateServiceOptions </summary>
84
-
/// <param name="friendlyName"> A descriptive string that you create to describe the verification service. It can be up to 30 characters long. **This value should not contain PII.** </param>
84
+
/// <param name="friendlyName"> A descriptive string that you create to describe the verification service. It can be up to 32 characters long. **This value should not contain PII.** </param>
85
85
publicCreateServiceOptions(stringfriendlyName)
86
86
{
87
87
FriendlyName=friendlyName;
@@ -254,7 +254,7 @@ public class UpdateServiceOptions : IOptions<ServiceResource>
254
254
///<summary> The Twilio-provided string that uniquely identifies the Service resource to update. </summary>
255
255
publicstringPathSid{get;}
256
256
257
-
///<summary> A descriptive string that you create to describe the verification service. It can be up to 30 characters long. **This value should not contain PII.** </summary>
257
+
///<summary> A descriptive string that you create to describe the verification service. It can be up to 32 characters long. **This value should not contain PII.** </summary>
258
258
publicstringFriendlyName{get;set;}
259
259
260
260
///<summary> The length of the verification code to generate. Must be an integer value between 4 and 10, inclusive. </summary>
0 commit comments