import type { ModifiedAtMsV3 } from '../schemas/ModifiedAtMsV3'; import type { PrincipalTypeV3 } from '../schemas/PrincipalTypeV3'; /** * Principal information (user or service account) */ export interface PrincipalV3 { createdAt: ModifiedAtMsV3; /** * @example "John Doe" */ displayName?: string; email?: string; /** * @format int64 * @example 123 */ id: number; type: PrincipalTypeV3; uid: string; updatedAt: ModifiedAtMsV3; }