nhl_stats/models/
game_boxscore_team_coaches.rs

1/*
2 * NHL API
3 *
4 * Documenting the publicly accessible portions of the NHL API.
5 *
6 * The version of the OpenAPI document: 1.0.0
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13#[derive(Debug, PartialEq, Serialize, Deserialize)]
14pub struct GameBoxscoreTeamCoaches {
15    #[serde(rename = "person", skip_serializing_if = "Option::is_none")]
16    pub person: Option<crate::models::GameBoxscoreTeamPerson>,
17    #[serde(rename = "position", skip_serializing_if = "Option::is_none")]
18    pub position: Option<crate::models::GameBoxscoreTeamPosition>,
19}
20
21impl GameBoxscoreTeamCoaches {
22    pub fn new() -> GameBoxscoreTeamCoaches {
23        GameBoxscoreTeamCoaches {
24            person: None,
25            position: None,
26        }
27    }
28}
29
30