/** * This is auto-generated file, don't modify this file manually */ import { BaseGeoCoordinates } from './BaseGeoCoordinates'; import { BasePlace } from './BasePlace'; export interface BaseGeo { coordinates?: BaseGeoCoordinates; place?: BasePlace; /** * Information whether a map is showed */ showmap?: number; /** * Place type */ type?: string; }