/** * This is auto-generated file, don't modify this file manually */ export interface BasePlace { /** * Place address */ address?: string; /** * Checkins number */ checkins?: number; /** * City name */ city?: string; /** * Date of the place creation in Unixtime */ created?: number; /** * URL of the place's icon */ icon?: string; /** * Place ID */ id?: number; /** * Place latitude */ latitude?: number; /** * Place longitude */ longitude?: number; /** * Place title */ title?: string; /** * Place type */ type?: string; }