plaid 9.0.1

Plaid client, generated from the OpenAPI spec.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Serialize, Deserialize};
///Enum for the status of the insights
#[derive(Debug, Serialize, Deserialize, Clone)]
pub enum MonitoringInsightsStatus {
    #[serde(rename = "AVAILABLE")]
    Available,
    #[serde(rename = "FAILED")]
    Failed,
    #[serde(rename = "PENDING")]
    Pending,
    #[serde(rename = "UNSUPPORTED")]
    Unsupported,
    #[serde(rename = "UNHEALTHY")]
    Unhealthy,
}