use serde::{Deserialize, Serialize};
///Party role specification reference. A party role specification gives additional details on the part played by a party in a given context.
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct PartyRoleSpecificationRefMvo {}
impl std::fmt::Display for PartyRoleSpecificationRefMvo {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}