pub struct GetSubusersStatsSumsRequest<'a> {
pub sort_by_direction: Option<String>,
pub start_date: String,
pub end_date: Option<String>,
pub limit: Option<i64>,
pub offset: Option<i64>,
pub aggregated_by: Option<String>,
pub sort_by_metric: Option<String>,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§sort_by_direction: Option<String>§start_date: String§end_date: Option<String>§limit: Option<i64>§offset: Option<i64>§aggregated_by: Option<String>§sort_by_metric: Option<String>Implementations§
Source§impl<'a> GetSubusersStatsSumsRequest<'a>
impl<'a> GetSubusersStatsSumsRequest<'a>
pub async fn send(self) -> Result<CategoryStats>
pub fn sort_by_direction(self, sort_by_direction: &str) -> Self
pub fn end_date(self, end_date: &str) -> Self
pub fn limit(self, limit: i64) -> Self
pub fn offset(self, offset: i64) -> Self
pub fn aggregated_by(self, aggregated_by: &str) -> Self
pub fn sort_by_metric(self, sort_by_metric: &str) -> Self
Auto Trait Implementations§
impl<'a> Freeze for GetSubusersStatsSumsRequest<'a>
impl<'a> !RefUnwindSafe for GetSubusersStatsSumsRequest<'a>
impl<'a> Send for GetSubusersStatsSumsRequest<'a>
impl<'a> Sync for GetSubusersStatsSumsRequest<'a>
impl<'a> Unpin for GetSubusersStatsSumsRequest<'a>
impl<'a> !UnwindSafe for GetSubusersStatsSumsRequest<'a>
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