pub struct FallbackAuthMicrodepositVerificationExpiredWebhook {
pub account_id: String,
pub environment: WebhookEnvironmentValues,
pub error: Option<String>,
pub item_id: String,
pub webhook_code: String,
pub webhook_type: String,
}Expand description
Fires when an account has an expired verification when using micro-deposits
Fields§
§account_id: StringThe external account ID associated with the micro-deposit
environment: WebhookEnvironmentValuesThe Plaid environment the webhook was sent from
error: Option<String>The error code associated with the webhook.
item_id: StringThe item_id of the Item associated with this webhook, warning, or error
webhook_code: StringVERIFICATION_EXPIRED
webhook_type: StringAUTH
Trait Implementations§
Source§impl Clone for FallbackAuthMicrodepositVerificationExpiredWebhook
impl Clone for FallbackAuthMicrodepositVerificationExpiredWebhook
Source§fn clone(&self) -> FallbackAuthMicrodepositVerificationExpiredWebhook
fn clone(&self) -> FallbackAuthMicrodepositVerificationExpiredWebhook
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 FallbackAuthMicrodepositVerificationExpiredWebhook
impl<'de> Deserialize<'de> for FallbackAuthMicrodepositVerificationExpiredWebhook
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 FallbackAuthMicrodepositVerificationExpiredWebhook
impl RefUnwindSafe for FallbackAuthMicrodepositVerificationExpiredWebhook
impl Send for FallbackAuthMicrodepositVerificationExpiredWebhook
impl Sync for FallbackAuthMicrodepositVerificationExpiredWebhook
impl Unpin for FallbackAuthMicrodepositVerificationExpiredWebhook
impl UnwindSafe for FallbackAuthMicrodepositVerificationExpiredWebhook
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