UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 496 B
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