// Generated by redfish-codegen. Do not modify.
use crate::models;
/// Information about communication between two components.
#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
#[derive(derivative::Derivative)]
#[derivative(Default)]
pub struct SPDMcommunication {
/// The active sessions or communication channels between two components.
#[serde(rename = "Sessions")]
#[serde(default, skip_serializing_if = "Option::is_none")]
pub sessions: Option<Vec<models::component_integrity::v1_2_0::SingleSessionInfo>>,
}
impl crate::Metadata<'static> for SPDMcommunication {
const JSON_SCHEMA: &'static str = "ComponentIntegrity.v1_2_0.json";
}