1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
//! Agency related structs and implementations
#[derive(Debug, Serialize, Deserialize)]
pub struct Agency {
    pub uid: String,
    #[serde(skip_serializing)]
    pub id: String,
    pub name: String,
    pub url: String,
    pub timezone: String,
    pub lang: String,
    pub phone: String,
    #[serde(skip_serializing)]
    pub feed_id: String,
}