idfm-api/types/network.go

10 lines
313 B
Go
Raw Normal View History

2023-07-14 10:23:33 +00:00
package types
// Network represents a specific network.
// They are fed by the agencies in GTFS format.
// See http://doc.navitia.io/#public-transport-objects.
type Network struct {
ID string `json:"id"` // ID is the identifier of the network
Name string `json:"name"` // Name is the name of the network
}