strava_data/models/
polyline_map.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Serialize, Deserialize)]
4pub struct PolylineMap {
5  /// The identifier of the map
6  pub id: Option<String>,
7  /// The polyline of the map, only returned on detailed representation of an object
8  pub polyline: Option<String>,
9  /// The summary polyline of the map
10  pub summary_polyline: Option<String>
11}