import { Role } from '../role/Role';
import { UserStatusEnum } from './UserStatusEnum';
/** User */
export interface User {
    /** User creation date */
    creationDate: string;
    /** User description */
    description: string;
    /** User id */
    id: number;
    /** User id on openstack */
    openstackId?: string;
    /** User roles */
    roles: Role[];
    /** User status */
    status: UserStatusEnum;
    /** Username */
    username: string;
}
//# sourceMappingURL=User.d.ts.map