Interface visitJson

interface visitJson {
    date: string | Date;
    potentialBot: boolean;
    referer: null | string;
    userAgent: string;
    visitLocation: null | {
        cityName: string;
        countryCode: string;
        countryName: string;
        latitude: number;
        longitude: number;
        regionName: string;
        timezone: string;
    };
    visitedUrl?: string;
}

Implemented by

Properties

date: string | Date
potentialBot: boolean
referer: null | string
userAgent: string
visitLocation: null | {
    cityName: string;
    countryCode: string;
    countryName: string;
    latitude: number;
    longitude: number;
    regionName: string;
    timezone: string;
}
visitedUrl?: string