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: src/Twilio/Rest/Conversations/V1/AddressConfigurationResource.cs
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -122,6 +122,7 @@ public static async System.Threading.Tasks.Task<AddressConfigurationResource> Cr
122
122
/// <param name="autoCreationWebhookFilters"> The list of events, firing webhook event for this Conversation. Values can be any of the following: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onConversationUpdated`, `onConversationStateUpdated`, `onConversationRemoved`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`, `onDeliveryUpdated` </param>
123
123
/// <param name="autoCreationStudioFlowSid"> For type `studio`, the studio flow SID where the webhook should be sent to. </param>
124
124
/// <param name="autoCreationStudioRetryCount"> For type `studio`, number of times to retry the webhook request </param>
125
+
/// <param name="addressCountry"> An ISO 3166-1 alpha-2n country code which the address belongs to. This is currently only applicable to short code addresses. </param>
125
126
/// <param name="client"> Client to make requests to Twilio </param>
126
127
/// <returns> A single instance of AddressConfiguration </returns>
127
128
publicstaticAddressConfigurationResourceCreate(
@@ -136,9 +137,10 @@ public static AddressConfigurationResource Create(
@@ -155,6 +157,7 @@ public static AddressConfigurationResource Create(
155
157
/// <param name="autoCreationWebhookFilters"> The list of events, firing webhook event for this Conversation. Values can be any of the following: `onMessageAdded`, `onMessageUpdated`, `onMessageRemoved`, `onConversationUpdated`, `onConversationStateUpdated`, `onConversationRemoved`, `onParticipantAdded`, `onParticipantUpdated`, `onParticipantRemoved`, `onDeliveryUpdated` </param>
156
158
/// <param name="autoCreationStudioFlowSid"> For type `studio`, the studio flow SID where the webhook should be sent to. </param>
157
159
/// <param name="autoCreationStudioRetryCount"> For type `studio`, number of times to retry the webhook request </param>
160
+
/// <param name="addressCountry"> An ISO 3166-1 alpha-2n country code which the address belongs to. This is currently only applicable to short code addresses. </param>
158
161
/// <param name="client"> Client to make requests to Twilio </param>
159
162
/// <returns> Task that resolves to A single instance of AddressConfiguration </returns>
///<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
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -336,31 +336,43 @@ 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>
339
342
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
340
343
/// <param name="limit"> Record limit </param>
341
344
/// <param name="client"> Client to make requests to Twilio </param>
342
345
/// <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>
354
363
/// <param name="pageSize"> How many resources to return in each list page. The default is 50, and the maximum is 1000. </param>
355
364
/// <param name="limit"> Record limit </param>
356
365
/// <param name="client"> Client to make requests to Twilio </param>
357
366
/// <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: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -214,6 +214,15 @@ 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>
0 commit comments