use serde::{Deserialize, Serialize};
/// Reference to a threshold for use in TMForum Open-APIs - When used for in a schema it means that the Entity described by the schema MUST be extended with the @type
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct ThresholdRef {}
impl std::fmt::Display for ThresholdRef {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}