pub struct InstitutionStatusAlertWebhook {
pub environment: WebhookEnvironmentValues,
pub institution_id: String,
pub institution_overall_success_rate: f64,
pub webhook_code: String,
pub webhook_type: String,
}Expand description
Fired when institution status meets the conditions configured in the developer dashboard.
Fields§
§environment: WebhookEnvironmentValuesThe Plaid environment the webhook was sent from
institution_id: StringThe ID of the associated institution.
institution_overall_success_rate: f64The global success rate of the institution, calculated based on item add health.
webhook_code: StringINSTITUTION_STATUS_ALERT_TRIGGERED
webhook_type: StringDASHBOARD_CONFIGURED_ALERT
Trait Implementations§
Source§impl Clone for InstitutionStatusAlertWebhook
impl Clone for InstitutionStatusAlertWebhook
Source§fn clone(&self) -> InstitutionStatusAlertWebhook
fn clone(&self) -> InstitutionStatusAlertWebhook
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for InstitutionStatusAlertWebhook
impl<'de> Deserialize<'de> for InstitutionStatusAlertWebhook
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InstitutionStatusAlertWebhook
impl RefUnwindSafe for InstitutionStatusAlertWebhook
impl Send for InstitutionStatusAlertWebhook
impl Sync for InstitutionStatusAlertWebhook
impl Unpin for InstitutionStatusAlertWebhook
impl UnwindSafe for InstitutionStatusAlertWebhook
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more