pub struct GetChatPaginatedDto {Show 14 fields
pub assistant_id: Option<String>,
pub workflow_id: Option<String>,
pub session_id: Option<String>,
pub page: Option<f64>,
pub sort_order: Option<SortOrderTrue>,
pub limit: Option<f64>,
pub created_at_gt: Option<String>,
pub created_at_lt: Option<String>,
pub created_at_ge: Option<String>,
pub created_at_le: Option<String>,
pub updated_at_gt: Option<String>,
pub updated_at_lt: Option<String>,
pub updated_at_ge: Option<String>,
pub updated_at_le: Option<String>,
}
Fields§
§assistant_id: Option<String>
This is the unique identifier for the assistant that will be used for the chat.
workflow_id: Option<String>
This is the unique identifier for the workflow that will be used for the chat.
session_id: Option<String>
This is the unique identifier for the session that will be used for the chat.
page: Option<f64>
This is the page number to return. Defaults to 1.
sort_order: Option<SortOrderTrue>
This is the sort order for pagination. Defaults to ‘DESC’.
limit: Option<f64>
This is the maximum number of items to return. Defaults to 100.
created_at_gt: Option<String>
This will return items where the createdAt is greater than the specified value.
created_at_lt: Option<String>
This will return items where the createdAt is less than the specified value.
created_at_ge: Option<String>
This will return items where the createdAt is greater than or equal to the specified value.
created_at_le: Option<String>
This will return items where the createdAt is less than or equal to the specified value.
updated_at_gt: Option<String>
This will return items where the updatedAt is greater than the specified value.
updated_at_lt: Option<String>
This will return items where the updatedAt is less than the specified value.
updated_at_ge: Option<String>
This will return items where the updatedAt is greater than or equal to the specified value.
updated_at_le: Option<String>
This will return items where the updatedAt is less than or equal to the specified value.
Implementations§
Source§impl GetChatPaginatedDto
impl GetChatPaginatedDto
pub fn new() -> GetChatPaginatedDto
Trait Implementations§
Source§impl Clone for GetChatPaginatedDto
impl Clone for GetChatPaginatedDto
Source§fn clone(&self) -> GetChatPaginatedDto
fn clone(&self) -> GetChatPaginatedDto
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more