use serde::{Serialize, Deserialize};
use super::Assets;
///Documentation not found in the MISMO model viewer and not provided by Freddie Mac.
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct VerificationOfAssetResponse {
///Documentation not found in the MISMO model viewer and not provided by Freddie Mac.
#[serde(rename = "ASSETS")]
pub assets: Assets,
}
impl std::fmt::Display for VerificationOfAssetResponse {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}