#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ErrorOneOf1OneOf {
#[serde(rename = "type")]
pub r#type: RHashType,
}
impl ErrorOneOf1OneOf {
pub fn new(r#type: RHashType) -> ErrorOneOf1OneOf {
ErrorOneOf1OneOf {
r#type,
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum RHashType {
#[serde(rename = "AlreadyOnboarded")]
AlreadyOnboarded,
}
impl Default for RHashType {
fn default() -> RHashType {
Self::AlreadyOnboarded
}
}