#[cfg(feature = "json")]
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug)]
#[cfg_attr(feature = "json", derive(Serialize, Deserialize))]
pub struct Identifier {
#[cfg_attr(feature = "json", serde(rename = "type"))]
pub type_: IdentifierType,
pub value: String,
}
#[derive(Clone, Debug)]
#[cfg_attr(feature = "json", derive(Serialize, Deserialize))]
pub enum IdentifierType {
#[cfg_attr(feature = "json", serde(rename = "dns"))]
Dns,
}