pub struct BodyPaginationArgs {
pub page_rows: Option<i64>,
pub page_timestamp: Option<i64>,
pub page_direction: Option<String>,
pub limit: Option<usize>,
pub all: bool,
pub requested: bool,
}Expand description
Parsed body-pagination input. ClickUp’s v3 audit-log endpoint
(POST /v3/workspaces/{ws}/auditlogs) puts pagination state inside the
request body as pagination: { pageRows, pageTimestamp, pageDirection },
not in query params. pageDirection is "NEXT" or "PREVIOUS" —
--all walks in whatever direction the caller passes, defaulting to
"NEXT" (newer events) if unspecified.
Fields§
§page_rows: Option<i64>§page_timestamp: Option<i64>§page_direction: Option<String>§limit: Option<usize>§all: bool§requested: boolImplementations§
Trait Implementations§
Source§impl Clone for BodyPaginationArgs
impl Clone for BodyPaginationArgs
Source§fn clone(&self) -> BodyPaginationArgs
fn clone(&self) -> BodyPaginationArgs
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 BodyPaginationArgs
impl Debug for BodyPaginationArgs
Source§impl Default for BodyPaginationArgs
impl Default for BodyPaginationArgs
Source§fn default() -> BodyPaginationArgs
fn default() -> BodyPaginationArgs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BodyPaginationArgs
impl RefUnwindSafe for BodyPaginationArgs
impl Send for BodyPaginationArgs
impl Sync for BodyPaginationArgs
impl Unpin for BodyPaginationArgs
impl UnsafeUnpin for BodyPaginationArgs
impl UnwindSafe for BodyPaginationArgs
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