1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-04 11:17:02 +02:00
unleash.unleash/frontend/src/openapi/models/inactiveUserSchema.ts
2024-04-26 13:31:15 +02:00

41 lines
794 B
TypeScript

/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* A Unleash user that has been flagged as inactive
*/
export interface InactiveUserSchema {
/** The user was created at this time */
createdAt?: string;
/** Email of the user */
email?: string;
/**
* The user id
* @minimum 0
*/
id: number;
/**
* Name of the user
* @nullable
*/
name?: string | null;
/**
* The last time this user's PAT token (if any) was used
* @nullable
*/
patSeenAt?: string | null;
/**
* The last time this user logged in
* @nullable
*/
seenAt?: string | null;
/**
* A unique username for the user
* @nullable
*/
username?: string | null;
}