use serde::{Serialize, Deserialize};
/**The confidence that Plaid can support the user in the digital income verification flow instead of requiring a manual paystub upload. One of the following:
`"HIGH"`: It is very likely that this user can use the digital income verification flow.
"`LOW`": It is unlikely that this user can use the digital income verification flow.
`"UNKNOWN"`: It was not possible to determine if the user is supportable with the information passed.*/
#[derive(Debug, Serialize, Deserialize, Clone)]
pub enum IncomeVerificationPrecheckConfidence {
#[serde(rename = "HIGH")]
High,
#[serde(rename = "LOW")]
Low,
#[serde(rename = "UNKNOWN")]
Unknown,
}