2024-05-30 14:04:48 +07:00
|
|
|
interface Users {
|
|
|
|
|
email: string;
|
|
|
|
|
firstName: string;
|
|
|
|
|
id: string;
|
|
|
|
|
lastName: string;
|
|
|
|
|
username: string;
|
2024-05-31 15:08:11 +07:00
|
|
|
roles: Roles;
|
2024-05-29 17:58:57 +07:00
|
|
|
}
|
|
|
|
|
|
2024-05-31 15:08:11 +07:00
|
|
|
interface Roles {
|
|
|
|
|
clientRole?: boolean;
|
|
|
|
|
composite?: boolean;
|
|
|
|
|
containerId?: string;
|
|
|
|
|
description: string;
|
|
|
|
|
id: string;
|
|
|
|
|
name: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { Users, Roles };
|