/** If the user is actively inviting other users, this is the link that can be shared with other users */
inviteLink?: string;
/** How many unsuccessful attempts at logging in has the user made */
loginAttempts?: number;
/** Is the welcome email sent to the user or not */
emailSent?: boolean;
/** Which [root role](https://docs.getunleash.io/reference/rbac#standard-roles) this user is assigned. Usually a numeric role ID, but can be a string when returning newly created user with an explicit string role. */
rootRole?: CreateUserResponseSchemaRootRole;
/** The last time this user logged in */
seenAt?: string|null;
/** The user was created at this time */
createdAt?: string;
/** A user is either an actual User or a Service Account */