pub struct GetUserNotificationsParams {
pub tenant_id: String,
pub page_size: Option<i32>,
pub after_id: Option<String>,
pub include_context: Option<bool>,
pub after_created_at: Option<i64>,
pub unread_only: Option<bool>,
pub dm_only: Option<bool>,
pub no_dm: Option<bool>,
pub include_translations: Option<bool>,
pub sso: Option<String>,
}Expand description
struct for passing parameters to the method get_user_notifications
Fields§
§tenant_id: String§page_size: Option<i32>§after_id: Option<String>§include_context: Option<bool>§after_created_at: Option<i64>§unread_only: Option<bool>§dm_only: Option<bool>§no_dm: Option<bool>§include_translations: Option<bool>§sso: Option<String>Trait Implementations§
Source§impl Clone for GetUserNotificationsParams
impl Clone for GetUserNotificationsParams
Source§fn clone(&self) -> GetUserNotificationsParams
fn clone(&self) -> GetUserNotificationsParams
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 moreAuto Trait Implementations§
impl Freeze for GetUserNotificationsParams
impl RefUnwindSafe for GetUserNotificationsParams
impl Send for GetUserNotificationsParams
impl Sync for GetUserNotificationsParams
impl Unpin for GetUserNotificationsParams
impl UnwindSafe for GetUserNotificationsParams
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