Interface UserToken

interface UserToken {
    email: string;
    exp?: number;
    iat?: number;
    isPlatformAdministrator?: boolean;
    member_group_id: number;
    pers_physique_id: number;
    profilCode: ProfilCode;
    profilId: string;
    profilName: string;
    profilType: ProfilType;
    scope?: {
        accountingFirmId?: string;
        accountingFolderId?: string;
        name: "excel_worksheet";
    };
}

Properties

email: string
exp?: number
iat?: number
isPlatformAdministrator?: boolean
member_group_id: number

Schema id.

pers_physique_id: number
profilCode: ProfilCode
profilId: string
profilName: string
profilType: ProfilType
scope?: {
    accountingFirmId?: string;
    accountingFolderId?: string;
    name: "excel_worksheet";
}