RefreshResponseDto: {
    accessToken: string;
    accessTokenExpiresAt: string;
    user: {
        displayName: string;
        email: string | null;
        id: string;
        mustChangePassword?: boolean;
        needsAgreementConsent?: boolean;
        permissions: string[];
        role: {
            key: string;
            name: string;
        };
        tenantKey: string;
        userId: string | null;
    };
}