usesuper::IncludedExcluded;usecrate::holidays::Holiday;useserde::Deserialize;#[derive(Debug, Deserialize)]/// A holiday event which occurs in a requested period.
pubstructBusinessHoliday{/// Specifying whether or not the holidays in the result list were included or excluded when
/// queried.
pub r#type:Option<IncludedExcluded>,
/// The number of holidays in the results.
pubcount:Option<i32>,
/// Holidays which occur in the requested period.
publist:Option<Vec<Holiday>>,
}