Interface BasePlace

interface BasePlace {
    address: string;
    checkins: number;
    city: string;
    country: string;
    created: number;
    icon: string;
    id: number;
    latitude: number;
    longitude: number;
    title: string;
    type: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

address: string

Place address

checkins: number

Checkins number

city: string

City name

country: string

Country name

created: number

Date of the place creation in Unixtime

icon: string

URL of the place's icon

id: number

Place ID

latitude: number

Place latitude

longitude: number

Place longitude

title: string

Place title

type: string

Place type

Generated using TypeDoc