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 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
-
publicstringStartDate{get;set;}
197
-
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
-
publicstringEndDate{get;set;}
200
-
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
+2-14Lines changed: 2 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -336,43 +336,31 @@ 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 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
-
/// <param name="state"> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </param>
342
339
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
343
340
/// <param name="limit"> Record limit </param>
344
341
/// <param name="client"> Client to make requests to Twilio </param>
345
342
/// <returns> A single instance of Conversation </returns>
/// <summary> Retrieve a list of conversations in your account's default service </summary>
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
-
/// <param name="state"> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </param>
363
354
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
364
355
/// <param name="limit"> Record limit </param>
365
356
/// <param name="client"> Client to make requests to Twilio </param>
366
357
/// <returns> Task that resolves to A single instance of Conversation </returns>
Copy file name to clipboardExpand all lines: src/Twilio/Rest/Conversations/V1/Service/ConversationOptions.cs
-21Lines changed: 0 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -214,15 +214,6 @@ 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 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
-
publicstringStartDate{get;set;}
219
-
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
-
publicstringEndDate{get;set;}
222
-
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
+2-14Lines changed: 2 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -354,46 +354,34 @@ 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 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
-
/// <param name="state"> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </param>
360
357
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
361
358
/// <param name="limit"> Record limit </param>
362
359
/// <param name="client"> Client to make requests to Twilio </param>
363
360
/// <returns> A single instance of Conversation </returns>
/// <summary> Retrieve a list of conversations in your service </summary>
379
373
/// <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 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
-
/// <param name="state"> State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` </param>
383
374
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
384
375
/// <param name="limit"> Record limit </param>
385
376
/// <param name="client"> Client to make requests to Twilio </param>
386
377
/// <returns> Task that resolves to A single instance of Conversation </returns>
0 commit comments