strava_data/models/
meta_athlete.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Serialize, Deserialize)]
4pub struct MetaAthlete {
5  /// The unique identifier of the athlete
6  #[serde(rename = "id")]
7  pub id: Option<i32>
8}