pub struct ContactListUsersRequest {
pub dept_id: i64,
pub cursor: i64,
pub size: i64,
pub language: Option<String>,
pub order_field: Option<String>,
pub contain_access_limit: Option<bool>,
}Expand description
Public webhook and enterprise request/response helper types. Re-exported enterprise request/response types. Request for listing users in a department.
Fields§
§dept_id: i64Department id.
cursor: i64Cursor for pagination.
size: i64Page size.
language: Option<String>Language code (for example zh_CN).
order_field: Option<String>Optional ordering field.
contain_access_limit: Option<bool>Whether to include access-limited users.
Implementations§
Source§impl ContactListUsersRequest
impl ContactListUsersRequest
Trait Implementations§
Source§impl Clone for ContactListUsersRequest
impl Clone for ContactListUsersRequest
Source§fn clone(&self) -> ContactListUsersRequest
fn clone(&self) -> ContactListUsersRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 ContactListUsersRequest
impl Debug for ContactListUsersRequest
Auto Trait Implementations§
impl Freeze for ContactListUsersRequest
impl RefUnwindSafe for ContactListUsersRequest
impl Send for ContactListUsersRequest
impl Sync for ContactListUsersRequest
impl Unpin for ContactListUsersRequest
impl UnsafeUnpin for ContactListUsersRequest
impl UnwindSafe for ContactListUsersRequest
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