Structures and Enumerations that implement the Real Estate Standards Organization (RESO) Data Dictionary.
The structures defined here can be serialized and deserialized using serde.
``` use resodd; use serdejson;
let reso = r#"{ "StandardStatus": "Active" }"#;
let property: resodd::Property = serdejson::fromstr(reso)?; asserteq!(property.standardstatus, Some(resodd::StandardStatus::Active));
println!("{}", serdejson::tostring(&property)?); ```