#[allow(unused_imports)]
use serde_json::Value;
#[derive(Debug, Serialize, Deserialize)]
pub struct EventEventlist {
/// Number of events linked to this eventgroup.
#[serde(rename = "event_count")]
pub event_count: Option<i32>,
/// Unique identifier of eventgroup instance.
#[serde(rename = "eventgroup_instance")]
pub eventgroup_instance: Option<String>,
/// list of all events linked to this eventgroup in chronological order.
#[serde(rename = "events")]
pub events: Option<Vec <crate::models::EventEventlistEvent>>,
/// Same as eventgroup_instance.
#[serde(rename = "id")]
pub id: Option<String>,
}