export interface User { /** * The name of the user */ username: string; /** * The full name of the user */ fullname: string; /** * The id of the user */ id: number; /** * The email of the user */ email: string; /** * Whether the user is active or not */ active: boolean; /** * The groups the user belongs to */ groups: UserGroup[]; /** * The default group the user belongs to */ defaultGroup: UserGroup; /** * The coworker the user is connected to */ coworker: UserCoworker; } export interface UserGroup { /** * Name of the group */ name: string; /** * Id of the group */ id: number; /** * Group description */ description: string; } interface UserCoworker { /** * Id of the coworker `LimeObject` */ id: number; /** * Name of the `Limetype` used for coworkers */ limetype: string; } export {};