tba_openapi_rust/models/
event_district_points_tiebreakers_value.rs

1/*
2 * The Blue Alliance API v3
3 *
4 * # Overview    Information and statistics about FIRST Robotics Competition teams and events.   # Authentication   All endpoints require an Auth Key to be passed in the header `X-TBA-Auth-Key`. If you do not have an auth key yet, you can obtain one from your [Account Page](/account).
5 *
6 * The version of the OpenAPI document: 3.8.2
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct EventDistrictPointsTiebreakersValue {
16    #[serde(rename = "highest_qual_scores", skip_serializing_if = "Option::is_none")]
17    pub highest_qual_scores: Option<Vec<i32>>,
18    #[serde(rename = "qual_wins", skip_serializing_if = "Option::is_none")]
19    pub qual_wins: Option<i32>,
20}
21
22impl EventDistrictPointsTiebreakersValue {
23    pub fn new() -> EventDistrictPointsTiebreakersValue {
24        EventDistrictPointsTiebreakersValue {
25            highest_qual_scores: None,
26            qual_wins: None,
27        }
28    }
29}
30
31