1 2 3 4 5 6 7 8 9
use serde::{Serialize, Deserialize}; ///The Plaid environment the webhook was sent from #[derive(Debug, Serialize, Deserialize, Clone)] pub enum WebhookEnvironmentValues { #[serde(rename = "sandbox")] Sandbox, #[serde(rename = "production")] Production, }