use serde::{Serialize, Deserialize};
///A match summary describing the cross comparison between the subject's name, extracted from the document image, and the name they separately provided to identity verification attempt.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub enum DocumentNameMatchCode {
#[serde(rename = "match")]
Match,
#[serde(rename = "partial_match")]
PartialMatch,
#[serde(rename = "no_match")]
NoMatch,
#[serde(rename = "no_data")]
NoData,
}