BikePoint.ts 423 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// all dates are unix timestamps
export interface IBikePoint {
    id: string,
    url: string,
    commonName: string,
    placeType: string,
    additionalProperties: BikePointProperty[],
    children: any[],
    childrenUrls: string[],
    lat: number,
    lon: number,
}

export interface BikePointProperty {
    category: string,
    key: string,
    sourceSystemKey: string,
    value: string,
    modified: string
}