pub struct ScreeningStatusUpdatedWebhook {
pub environment: WebhookEnvironmentValues,
pub screening_id: String,
pub webhook_code: String,
pub webhook_type: String,
}
Expand description
Fired when an individual screening status has changed, which can occur manually via the dashboard or during ongoing monitoring.
Fields§
§environment: WebhookEnvironmentValues
The Plaid environment the webhook was sent from
screening_id: String
The ID of the associated screening.
webhook_code: String
STATUS_UPDATED
webhook_type: String
SCREENING
Trait Implementations§
Source§impl Clone for ScreeningStatusUpdatedWebhook
impl Clone for ScreeningStatusUpdatedWebhook
Source§fn clone(&self) -> ScreeningStatusUpdatedWebhook
fn clone(&self) -> ScreeningStatusUpdatedWebhook
Returns a copy 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 ScreeningStatusUpdatedWebhook
impl<'de> Deserialize<'de> for ScreeningStatusUpdatedWebhook
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 ScreeningStatusUpdatedWebhook
impl RefUnwindSafe for ScreeningStatusUpdatedWebhook
impl Send for ScreeningStatusUpdatedWebhook
impl Sync for ScreeningStatusUpdatedWebhook
impl Unpin for ScreeningStatusUpdatedWebhook
impl UnwindSafe for ScreeningStatusUpdatedWebhook
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