pub struct ListChatKitThreadItemsQuery {
pub limit: Option<u32>,
pub order: Option<ListChatKitThreadItemsOrder>,
pub after: Option<String>,
pub before: Option<String>,
}Available on crate feature
chatkit-types only.Expand description
Query parameters for listing ChatKit thread items.
Fields§
§limit: Option<u32>Maximum number of thread items to return. Defaults to 20.
order: Option<ListChatKitThreadItemsOrder>Sort order for results by creation time. Defaults to desc.
after: Option<String>List items created after this thread item ID. Defaults to null for the first page.
before: Option<String>List items created before this thread item ID. Defaults to null for the newest results.
Trait Implementations§
Source§impl Clone for ListChatKitThreadItemsQuery
impl Clone for ListChatKitThreadItemsQuery
Source§fn clone(&self) -> ListChatKitThreadItemsQuery
fn clone(&self) -> ListChatKitThreadItemsQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListChatKitThreadItemsQuery
impl Debug for ListChatKitThreadItemsQuery
Source§impl Default for ListChatKitThreadItemsQuery
impl Default for ListChatKitThreadItemsQuery
Source§fn default() -> ListChatKitThreadItemsQuery
fn default() -> ListChatKitThreadItemsQuery
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListChatKitThreadItemsQuery
Auto Trait Implementations§
impl Freeze for ListChatKitThreadItemsQuery
impl RefUnwindSafe for ListChatKitThreadItemsQuery
impl Send for ListChatKitThreadItemsQuery
impl Sync for ListChatKitThreadItemsQuery
impl Unpin for ListChatKitThreadItemsQuery
impl UnsafeUnpin for ListChatKitThreadItemsQuery
impl UnwindSafe for ListChatKitThreadItemsQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more