use serde::{Serialize, Deserialize};
///
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct DeletedRadarValueListItem {
///Always true for a deleted object
pub deleted: bool,
///Unique identifier for the object.
pub id: String,
///String representing the object's type. Objects of the same type share the same value.
pub object: String,
}
impl std::fmt::Display for DeletedRadarValueListItem {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}