/*
* The Blue Alliance API v3
*
* # 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).
*
* The version of the OpenAPI document: 3.8.2
*
* Generated by: https://openapi-generator.tech
*/
/// TeamEventStatusAllianceBackup : Backup status, may be null.
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct TeamEventStatusAllianceBackup {
/// TBA key for the team replaced by the backup.
#[serde(rename = "out", skip_serializing_if = "Option::is_none")]
pub out: Option<String>,
/// TBA key for the backup team called in.
#[serde(rename = "in", skip_serializing_if = "Option::is_none")]
pub r#in: Option<String>,
}
impl TeamEventStatusAllianceBackup {
/// Backup status, may be null.
pub fn new() -> TeamEventStatusAllianceBackup {
TeamEventStatusAllianceBackup {
out: None,
r#in: None,
}
}
}