1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! This namespace represents the models used in the API, //! this part of the documentation should be used as a reference for your classes in //! your application's wrapper. //! Please note that some `models` contain a `feed_id` and a `model_id`. These fields *are not //! serialized*. //! pub mod agency; pub mod api; pub mod boundingbox; pub mod coordinate; pub mod csv; pub mod dropoff; pub mod pickup; pub mod query; pub mod route; pub mod stop; pub mod time; pub mod trip;