idfm-api/types/company.go

10 lines
270 B
Go
Raw Normal View History

2023-07-14 10:23:33 +00:00
package types
// A Company is a provider of transport
// Example: the RATP in Paris
// See http://doc.navitia.io/#public-transport-objects
type Company struct {
ID string `json:"id"` // Identifier of the company
Name string `json:"name"` // Name of the company
}