interface TokenInterface {
    id?: number;
    type: string;
    entityValue: string | null;
    userId: number | null;
    accountId: number | null;
    token: Text;
    code?: string | null;
    status: number;
    allowedAttempts?: number;
    verificationsAttempts?: number;
    createdAt?: Date
}

interface TokenObject {
    type: string;
    entityValue: string | null;
    userId?: number | null;
    accountId?: number | null;
    token: Text;
    code?: string | null;
    status?: number | null;
    allowedAttempts?: number;
}
