Mitchell Magro 60af9a6e28 Added rules
2025-07-04 14:14:00 +02:00

27 lines
675 B
TypeScript

export interface IUser {
merchantId: number;
name?: string;
id: string;
username: string;
firstName: string;
lastName: string;
email: string;
phone: string;
jobTitle: string;
enabled: boolean;
authorities: string[];
allowedMerchantIds: number[];
created: string;
disabledBy: string | null;
disabledDate: string | null;
disabledReason: string | null;
incidentNotes: boolean;
lastLogin: string;
lastMandatoryUpdated: string;
marketingNewsletter: boolean;
releaseNotes: boolean;
requiredActions: string[];
twoFactorCondition: string;
twoFactorCredentials: any[]; // Assuming this is an array that could contain any type of data
}