plaid/model/partner_end_customer_o_auth_institution_application_status.rs
1use serde::{Serialize, Deserialize};
2///The registration status for the end customer's application.
3#[derive(Debug, Serialize, Deserialize, Clone)]
4pub enum PartnerEndCustomerOAuthInstitutionApplicationStatus {
5 #[serde(rename = "NOT_STARTED")]
6 NotStarted,
7 #[serde(rename = "PROCESSING")]
8 Processing,
9 #[serde(rename = "APPROVED")]
10 Approved,
11 #[serde(rename = "ENABLED")]
12 Enabled,
13 #[serde(rename = "ATTENTION_REQUIRED")]
14 AttentionRequired,
15}