pub struct GetSessionPaginatedDto {Show 14 fields
pub name: Option<String>,
pub assistant_id: Option<String>,
pub workflow_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§
§name: Option<String>
This is the name of the session to filter by.
assistant_id: Option<String>
This is the ID of the assistant to filter sessions by.
workflow_id: Option<String>
This is the ID of the workflow to filter sessions by.
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 GetSessionPaginatedDto
impl GetSessionPaginatedDto
pub fn new() -> GetSessionPaginatedDto
Trait Implementations§
Source§impl Clone for GetSessionPaginatedDto
impl Clone for GetSessionPaginatedDto
Source§fn clone(&self) -> GetSessionPaginatedDto
fn clone(&self) -> GetSessionPaginatedDto
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more