Files
go-gtfs/pkg/types/transfer.go
2025-11-15 00:23:48 +01:00

11 lines
434 B
Go

package types
type Transfer struct {
FromStopId string `json:"from_stop_id" csv:"from_stop_id"`
ToStopId string `json:"to_stop_id" csv:"to_stop_id"`
TransferType int `json:"transfer_type" csv:"transfer_type"`
MinTransferTime int `json:"min_transfer_time" csv:"min_transfer_time"`
FromTripId string `json:"from_trip_id" csv:"from_trip_id"`
ToTripId string `json:"to_trip_id" csv:"to_trip_id"`
}