BikeTrip.ts 275 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
// all dates are unix timestamps
export interface IBikeTrip {
    rentalId: string
    duration: number
    bikeId: string
    endDate: number
    endStationId: string
    endStationName: string
    startDate: number
    startStationId: string
    startStationName: string
}