pub struct IdentityVerificationStepUpdatedWebhook {
pub environment: WebhookEnvironmentValues,
pub identity_verification_id: String,
pub webhook_code: String,
pub webhook_type: String,
}
Expand description
Fired when an end user has completed a step of the Identity Verification process.
Fields§
§environment: WebhookEnvironmentValues
The Plaid environment the webhook was sent from
identity_verification_id: String
The ID of the associated Identity Verification attempt.
webhook_code: String
STEP_UPDATED
webhook_type: String
IDENTITY_VERIFICATION
Trait Implementations§
Source§impl Clone for IdentityVerificationStepUpdatedWebhook
impl Clone for IdentityVerificationStepUpdatedWebhook
Source§fn clone(&self) -> IdentityVerificationStepUpdatedWebhook
fn clone(&self) -> IdentityVerificationStepUpdatedWebhook
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 IdentityVerificationStepUpdatedWebhook
impl<'de> Deserialize<'de> for IdentityVerificationStepUpdatedWebhook
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 IdentityVerificationStepUpdatedWebhook
impl RefUnwindSafe for IdentityVerificationStepUpdatedWebhook
impl Send for IdentityVerificationStepUpdatedWebhook
impl Sync for IdentityVerificationStepUpdatedWebhook
impl Unpin for IdentityVerificationStepUpdatedWebhook
impl UnwindSafe for IdentityVerificationStepUpdatedWebhook
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