Approximate location parameters for the search.

interface Approximate {
    city?: string;
    country?: string;
    region?: string;
    timezone?: string;
}

Properties

city?: string

Free text input for the city of the user, e.g. San Francisco.

country?: string

The two-letter ISO country code of the user, e.g. US.

region?: string

Free text input for the region of the user, e.g. California.

timezone?: string

The IANA timezone of the user, e.g. America/Los_Angeles.