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
/** 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. */
94
+
startDate?: string;
95
+
/** 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. */
96
+
endDate?: string;
97
+
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
98
+
state?: ConversationState;
93
99
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
94
100
pageSize?: number;
95
101
/** Function to process each record. If this and a positional callback are passed, this one will be used */
/** 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. */
114
+
startDate?: string;
115
+
/** 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. */
116
+
endDate?: string;
117
+
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
118
+
state?: ConversationState;
107
119
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
108
120
pageSize?: number;
109
121
/** Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit */
/** 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. */
130
+
startDate?: string;
131
+
/** 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. */
132
+
endDate?: string;
133
+
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
134
+
state?: ConversationState;
117
135
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
118
136
pageSize?: number;
119
137
/** Page Number, this value is simply for client state */
@@ -792,6 +810,10 @@ export function ConversationListInstance(
/** 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. */
94
+
startDate?: string;
95
+
/** 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. */
96
+
endDate?: string;
97
+
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
98
+
state?: ConversationState;
93
99
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
94
100
pageSize?: number;
95
101
/** Function to process each record. If this and a positional callback are passed, this one will be used */
/** 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. */
114
+
startDate?: string;
115
+
/** 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. */
116
+
endDate?: string;
117
+
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
118
+
state?: ConversationState;
107
119
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
108
120
pageSize?: number;
109
121
/** Upper limit for the number of records to return. list() guarantees never to return more than limit. Default is no limit */
/** 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. */
130
+
startDate?: string;
131
+
/** 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. */
132
+
endDate?: string;
133
+
/** State for sorting and filtering list of Conversations. Can be `active`, `inactive` or `closed` */
134
+
state?: ConversationState;
117
135
/** How many resources to return in each list page. The default is 50, and the maximum is 1000. */
118
136
pageSize?: number;
119
137
/** Page Number, this value is simply for client state */
@@ -830,6 +848,10 @@ export function ConversationListInstance(
0 commit comments