interface PermissionBase {
    formsAppEnvironmentIds?: number[];
    isMfaEnabled?: boolean;
    isSuperUser: boolean;
    links: {
        organisations: string;
        role: Role;
        users: string;
    };
    name?: null | string;
    privilege: RolePrivileges;
    temporaryPasswordExpiry?: string;
}

Properties

formsAppEnvironmentIds?: number[]
isMfaEnabled?: boolean
isSuperUser: boolean
links: {
    organisations: string;
    role: Role;
    users: string;
}
name?: null | string
privilege: RolePrivileges
temporaryPasswordExpiry?: string