@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
22 lines • 561 B
TypeScript
import { Role } from '../role/Role';
import { UserStatusEnum } from './UserStatusEnum';
/** UserDetail */
export interface UserDetail {
/** User creation date */
creationDate: string;
/** User description */
description: string;
/** User id */
id: number;
/** User id on openstack */
openstackId?: string;
/** User password */
password: string;
/** User roles */
roles: Role[];
/** User status */
status: UserStatusEnum;
/** Username */
username: string;
}
//# sourceMappingURL=UserDetail.d.ts.map