// 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 }