pub struct ThreadResumeInitialTurnsPageParams {
pub items_view: Option<TurnItemsView>,
pub limit: Option<u32>,
pub sort_direction: Option<SortDirection>,
}Expand description
ThreadResumeInitialTurnsPageParams
JSON schema
{
"type": "object",
"properties": {
"itemsView": {
"description": "How much item detail to include for each returned turn; defaults to summary.",
"anyOf": [
{
"$ref": "#/definitions/TurnItemsView"
},
{
"type": "null"
}
]
},
"limit": {
"description": "Optional turn page size.",
"type": [
"integer",
"null"
],
"format": "uint32",
"minimum": 0.0
},
"sortDirection": {
"description": "Optional turn pagination direction; defaults to descending.",
"anyOf": [
{
"$ref": "#/definitions/SortDirection"
},
{
"type": "null"
}
]
}
}
}Fields§
§items_view: Option<TurnItemsView>How much item detail to include for each returned turn; defaults to summary.
limit: Option<u32>Optional turn page size.
sort_direction: Option<SortDirection>Optional turn pagination direction; defaults to descending.
Trait Implementations§
Source§impl Clone for ThreadResumeInitialTurnsPageParams
impl Clone for ThreadResumeInitialTurnsPageParams
Source§fn clone(&self) -> ThreadResumeInitialTurnsPageParams
fn clone(&self) -> ThreadResumeInitialTurnsPageParams
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<'de> Deserialize<'de> for ThreadResumeInitialTurnsPageParams
impl<'de> Deserialize<'de> for ThreadResumeInitialTurnsPageParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ThreadResumeInitialTurnsPageParams
impl RefUnwindSafe for ThreadResumeInitialTurnsPageParams
impl Send for ThreadResumeInitialTurnsPageParams
impl Sync for ThreadResumeInitialTurnsPageParams
impl Unpin for ThreadResumeInitialTurnsPageParams
impl UnsafeUnpin for ThreadResumeInitialTurnsPageParams
impl UnwindSafe for ThreadResumeInitialTurnsPageParams
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