libtad_models/places/
place.rs

1use super::Geo;
2use serde::Deserialize;
3
4#[derive(Debug, Deserialize)]
5/// Information about a place.
6pub struct Place {
7    /// Numerical ID of the referenced place.
8    pub id: i32,
9
10    /// Textual ID of the referenced place.
11    pub urlid: String,
12
13    /// Geographical information about the location.
14    pub geo: Geo,
15}