Interface DeviceInternal

Device information

Example

{
"city_name": "Seattle",
"user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0",
"country_name": "US",
"country_iso_code": "US"
}
interface Device {
    city_name: string;
    country_iso_code: string;
    country_name: string;
    user_agent: string;
}

Properties

city_name: string
country_iso_code: string
country_name: string
user_agent: string

Generated using TypeDoc