2023-07-20 12:59:55 +02:00
/ * *
* Generated by Orval
* Do not edit manually .
* See ` gen:api ` script in package . json
* /
import type { CreateUserResponseSchemaRootRole } from './createUserResponseSchemaRootRole' ;
/ * *
* An Unleash user after creation
* /
export interface CreateUserResponseSchema {
/** The user id */
id : number ;
/ * *
* ( Deprecated ) : Used internally to know which operations the user should be allowed to perform
* @deprecated
* /
isAPI? : boolean ;
/** Name of the user */
2023-08-03 15:05:20 +02:00
name? : string | null ;
2023-07-20 12:59:55 +02:00
/** Email of the user */
email? : string ;
/** A unique username for the user */
username? : string ;
/** URL used for the userprofile image */
imageUrl? : string ;
/** 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 ;
2023-08-24 12:13:02 +02:00
/** Which [root role](https://docs.getunleash.io/reference/rbac#predefined-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. */
2023-07-20 12:59:55 +02:00
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 */
accountType? : string ;
/** Deprecated */
permissions? : string [ ] ;
}