strava-wrapper 0.1.1

A Rust wrapper for the Strava API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Upload resource types.

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Upload {
    pub id: Option<i64>,
    pub id_str: Option<String>,
    pub external_id: Option<String>,
    pub error: Option<String>,
    pub status: Option<String>,
    pub activity_id: Option<i64>,
}