pub struct MultipleUsersWithDates {
pub from_date: String,
pub to_date: String,
pub created_from_date_time: Option<String>,
pub created_to_date_time: Option<String>,
pub user_ids: Option<Vec<String>>,
}Expand description
MultipleUsersWithDates : Filter parameters.
Fields§
§from_date: StringThe date (in the company’s time zone) from which to list a user’s activity. This value is inclusive. The date should be specified in the following format: YYYY-MM-DD.
to_date: StringThe date (in the company’s time zone) until which to list a user’s activity. This value is exclusive. This value should not exceed the current day. The date should be specified in the following format: YYYY-MM-DD.
created_from_date_time: Option<String>§created_to_date_time: Option<String>§user_ids: Option<Vec<String>>Set of Gong’s unique numeric identifiers for the users (up to 20 digits).
Implementations§
Source§impl MultipleUsersWithDates
impl MultipleUsersWithDates
Sourcepub fn new(from_date: String, to_date: String) -> MultipleUsersWithDates
pub fn new(from_date: String, to_date: String) -> MultipleUsersWithDates
Filter parameters.
Trait Implementations§
Source§impl Clone for MultipleUsersWithDates
impl Clone for MultipleUsersWithDates
Source§fn clone(&self) -> MultipleUsersWithDates
fn clone(&self) -> MultipleUsersWithDates
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 MultipleUsersWithDates
impl Debug for MultipleUsersWithDates
Source§impl Default for MultipleUsersWithDates
impl Default for MultipleUsersWithDates
Source§fn default() -> MultipleUsersWithDates
fn default() -> MultipleUsersWithDates
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MultipleUsersWithDates
impl<'de> Deserialize<'de> for MultipleUsersWithDates
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MultipleUsersWithDates
impl PartialEq for MultipleUsersWithDates
Source§fn eq(&self, other: &MultipleUsersWithDates) -> bool
fn eq(&self, other: &MultipleUsersWithDates) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for MultipleUsersWithDates
impl Serialize for MultipleUsersWithDates
impl StructuralPartialEq for MultipleUsersWithDates
Auto Trait Implementations§
impl Freeze for MultipleUsersWithDates
impl RefUnwindSafe for MultipleUsersWithDates
impl Send for MultipleUsersWithDates
impl Sync for MultipleUsersWithDates
impl Unpin for MultipleUsersWithDates
impl UnsafeUnpin for MultipleUsersWithDates
impl UnwindSafe for MultipleUsersWithDates
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