tba_openapi_rust/models/
event_district_points_tiebreakers_value.rs1#[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