Skip to main content

umami_api/
teams.rs

1use serde::{Deserialize};
2
3#[derive(Clone, Debug, Deserialize)]
4#[serde(rename_all = "camelCase")]
5pub struct BaseTeam {
6  pub id: String,
7  pub name: String,
8  pub logo_url: Option<String>,
9}