pub struct UserSchema {Show 13 fields
pub id: Option<String>,
pub name: Option<String>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub email: Option<String>,
pub phone: Option<String>,
pub extension: Option<String>,
pub permissions: Option<PermissionsDto>,
pub scopes: Option<String>,
pub roles: Option<RoleSchema>,
pub deleted: Option<bool>,
pub lc_phone: Option<Value>,
pub platform_language: Option<String>,
}users only.Expand description
UserSchema from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Unique identifier of the user
name: Option<String>Full name of the user
first_name: Option<String>First name of the user
last_name: Option<String>Last name of the user
email: Option<String>Email address of the user
phone: Option<String>Phone number of the user
extension: Option<String>Phone extension of the user
permissions: Option<PermissionsDto>User permissions controlling access to various features
scopes: Option<String>List of OAuth scopes granted to this user
Allowed values: campaigns.readonly, campaigns.write, calendars.readonly,
calendars/events.write, calendars/groups.write, calendars.write, contacts.write,
contacts/bulkActions.write, workflows.readonly, workflows.write, triggers.write,
funnels.write.
roles: Option<RoleSchema>Role and access configuration for the user
deleted: Option<bool>Whether the user has been deleted
lc_phone: Option<Value>LC Phone Inbound Phone Numbers
platform_language: Option<String>Platform language preference for the user
Allowed values: en_US, es, fr_CA, fr_FR, nl, de, pt_PT, pt_BR, it,
sv, da, fi.
Trait Implementations§
Source§impl Clone for UserSchema
impl Clone for UserSchema
Source§fn clone(&self) -> UserSchema
fn clone(&self) -> UserSchema
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more