use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
pub struct CoachDeckLayoutCollectionResponse {
#[serde(rename = "problems", skip_serializing_if = "Option::is_none")]
pub problems: Option<Vec<models::Problem>>,
#[serde(rename = "coachDeckLayouts", skip_serializing_if = "Option::is_none")]
pub coach_deck_layouts: Option<Vec<models::CoachDeckLayout>>,
#[serde(rename = "_links", skip_serializing_if = "Option::is_none")]
pub _links: Option<Vec<models::Link>>,
}
impl CoachDeckLayoutCollectionResponse {
pub fn new() -> CoachDeckLayoutCollectionResponse {
CoachDeckLayoutCollectionResponse {
problems: None,
coach_deck_layouts: None,
_links: None,
}
}
}