Interface GroupsAddress

interface GroupsAddress {
    additional_address: string;
    address: string;
    city_id: number;
    country_id: number;
    distance: number;
    id: number;
    latitude: number;
    longitude: number;
    metro_station_id: number;
    phone: string;
    place_id: number;
    time_offset: number;
    title: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

additional_address: string

Additional address to the place (6 floor, left door)

address: string

String address to the place (Nevsky, 28)

city_id: number

City id of address

country_id: number

Country id of address

distance: number

Distance from the point

id: number

Address id

latitude: number

Address latitude

longitude: number

Address longitude

metro_station_id: number

Metro id of address

phone: string

Address phone

place_id: number
time_offset: number

Time offset int minutes from utc time

title: string

Title of the place (Zinger, etc)

Generated using TypeDoc