@golemio/pid
Version:
Golemio PID Module
11 lines (10 loc) • 344 B
TypeScript
import { GTFSTransferTypeEnum } from "../enums/TransferTypeEnum";
export interface ITransferDto {
from_stop_id: string | null;
to_stop_id: string | null;
from_trip_id: string | null;
to_trip_id: string | null;
transfer_type: GTFSTransferTypeEnum;
min_transfer_time: number | null;
max_waiting_time: number | null;
}