pub struct MultipleUsersRequestWithCreationDates {
pub created_from_date_time: Option<String>,
pub created_to_date_time: Option<String>,
pub include_avatars: Option<bool>,
pub user_ids: Option<Vec<String>>,
}Expand description
MultipleUsersRequestWithCreationDates : Filter parameters.
Fields§
§created_from_date_time: Option<String>An optional user creation time lower limit, if supplied the API will return only the users created at or after this time. The filed is in the ISO-8601 format (e.g., ‘2018-02-18T02:30:00-07:00’ or ‘2018-02-18T08:00:00Z’, where Z stands for UTC).
created_to_date_time: Option<String>An optional user creation time upper limit, if supplied the API will return only the users created before this time. The filed is in the ISO-8601 format (e.g., ‘2018-02-18T02:30:00-07:00’ or ‘2018-02-18T08:00:00Z’, where Z stands for UTC).
include_avatars: Option<bool>Avatars are synthetic users representing Gong employees (CSMs and support providers) when they access your instance. References to avatars’ IDs may be found in the outputs of other API endpoints. This parameter is optional, if not provided avatars will not be included in the results.
user_ids: Option<Vec<String>>Set of Gong’s unique numeric identifiers for the users (up to 20 digits).
Implementations§
Source§impl MultipleUsersRequestWithCreationDates
impl MultipleUsersRequestWithCreationDates
Sourcepub fn new() -> MultipleUsersRequestWithCreationDates
pub fn new() -> MultipleUsersRequestWithCreationDates
Filter parameters.
Trait Implementations§
Source§impl Clone for MultipleUsersRequestWithCreationDates
impl Clone for MultipleUsersRequestWithCreationDates
Source§fn clone(&self) -> MultipleUsersRequestWithCreationDates
fn clone(&self) -> MultipleUsersRequestWithCreationDates
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for MultipleUsersRequestWithCreationDates
impl Default for MultipleUsersRequestWithCreationDates
Source§fn default() -> MultipleUsersRequestWithCreationDates
fn default() -> MultipleUsersRequestWithCreationDates
Source§impl<'de> Deserialize<'de> for MultipleUsersRequestWithCreationDates
impl<'de> Deserialize<'de> for MultipleUsersRequestWithCreationDates
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>,
Source§impl PartialEq for MultipleUsersRequestWithCreationDates
impl PartialEq for MultipleUsersRequestWithCreationDates
Source§fn eq(&self, other: &MultipleUsersRequestWithCreationDates) -> bool
fn eq(&self, other: &MultipleUsersRequestWithCreationDates) -> bool
self and other values to be equal, and is used by ==.