pub struct FilterByEmailDto {
pub company_id: String,
pub emails: String,
pub deleted: Option<bool>,
pub skip: Option<String>,
pub limit: Option<String>,
pub projection: Option<String>,
}Available on crate feature
users only.Expand description
FilterByEmailDto from the GoHighLevel OpenAPI spec.
Fields§
§company_id: StringCompany ID to filter users Required by the API.
emails: StringComma-separated list of email addresses to filter users Required by the API.
deleted: Option<bool>Filter deleted users
skip: Option<String>No of results to be skipped before returning the result
limit: Option<String>No of results to be limited before returning the result
projection: Option<String>Projection fields to return. Use “all” for all fields, or specify comma-separated field names. Default returns only id and email
Trait Implementations§
Source§impl Clone for FilterByEmailDto
impl Clone for FilterByEmailDto
Source§fn clone(&self) -> FilterByEmailDto
fn clone(&self) -> FilterByEmailDto
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 FilterByEmailDto
impl Debug for FilterByEmailDto
Source§impl Default for FilterByEmailDto
impl Default for FilterByEmailDto
Source§fn default() -> FilterByEmailDto
fn default() -> FilterByEmailDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FilterByEmailDto
impl<'de> Deserialize<'de> for FilterByEmailDto
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
Auto Trait Implementations§
impl Freeze for FilterByEmailDto
impl RefUnwindSafe for FilterByEmailDto
impl Send for FilterByEmailDto
impl Sync for FilterByEmailDto
impl Unpin for FilterByEmailDto
impl UnsafeUnpin for FilterByEmailDto
impl UnwindSafe for FilterByEmailDto
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