chesscom_openapi/models/
lessons_stats.rs

1/*
2 * Chess
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: 1.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct LessonsStats {
16    #[serde(rename = "higest", skip_serializing_if = "Option::is_none")]
17    pub higest: Option<crate::models::Rating>,
18    #[serde(rename = "lowest", skip_serializing_if = "Option::is_none")]
19    pub lowest: Option<crate::models::Rating>,
20}
21
22impl LessonsStats {
23    pub fn new() -> LessonsStats {
24        LessonsStats {
25            higest: None,
26            lowest: None,
27        }
28    }
29}
30
31