pub struct GetAliasThreadsParams {
pub alias_id: String,
pub before: Option<String>,
pub page: Option<i32>,
pub since: Option<String>,
pub size: Option<i32>,
pub sort: Option<String>,
}Expand description
struct for passing parameters to the method get_alias_threads
Fields§
§alias_id: StringaliasId
before: Option<String>Optional filter by sent before given date time
page: Option<i32>Optional page index in thread list pagination
since: Option<String>Optional filter by sent after given date time
size: Option<i32>Optional page size in thread list pagination
sort: Option<String>Optional createdAt sort direction ASC or DESC
Trait Implementations§
Source§impl Clone for GetAliasThreadsParams
impl Clone for GetAliasThreadsParams
Source§fn clone(&self) -> GetAliasThreadsParams
fn clone(&self) -> GetAliasThreadsParams
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 GetAliasThreadsParams
impl RefUnwindSafe for GetAliasThreadsParams
impl Send for GetAliasThreadsParams
impl Sync for GetAliasThreadsParams
impl Unpin for GetAliasThreadsParams
impl UnwindSafe for GetAliasThreadsParams
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