plaid 9.0.1

Plaid client, generated from the OpenAPI spec.
Documentation
use serde::{Serialize, Deserialize};
use super::WebhookEnvironmentValues;
///Fired when a bank income report has failed to generate
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CraBankIncomeErrorWebhook {
    ///The Plaid environment the webhook was sent from
    pub environment: WebhookEnvironmentValues,
    ///The `user_id` corresponding to the user the webhook has fired for.
    pub user_id: String,
    ///`ERROR`
    pub webhook_code: String,
    ///`CRA_INCOME`
    pub webhook_type: String,
}
impl std::fmt::Display for CraBankIncomeErrorWebhook {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{}", serde_json::to_string(self).unwrap())
    }
}