plaid 9.0.1

Plaid client, generated from the OpenAPI spec.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Serialize, Deserialize};
///Indicates whether the email address domain is a free provider such as Gmail or Hotmail if known.
#[derive(Debug, Serialize, Deserialize, Clone)]
pub enum RiskCheckEmailDomainIsFreeProvider {
    #[serde(rename = "yes")]
    Yes,
    #[serde(rename = "no")]
    No,
    #[serde(rename = "no_data")]
    NoData,
}