MonoCloud Management SDK
    Preparing search index...

    Log Location Response: Represents the geographical location associated with the log entry.

    LogLocation

    interface LogLocation {
        city?: string | null;
        continent?: string | null;
        country?: string | null;
        latitude?: string | null;
        longitude?: string | null;
        region?: string | null;
        region_code?: string | null;
        time_zone?: string | null;
        zip_code?: string | null;
    }
    Index

    Properties

    city?: string | null

    The city of the request.

    LogLocation

    continent?: string | null

    The continent of the request.

    LogLocation

    country?: string | null

    The country of the request.

    LogLocation

    latitude?: string | null

    The latitude of the request.

    LogLocation

    longitude?: string | null

    The longitude of the request.

    LogLocation

    region?: string | null

    The region or state of the request.

    LogLocation

    region_code?: string | null

    The region or state code of the request.

    LogLocation

    time_zone?: string | null

    The IANA time zone of the request.

    LogLocation

    zip_code?: string | null

    The postal or zip code of the request.

    LogLocation