pub struct AccountVerificationInsights {
pub account_number_format: AccountVerificationInsightsAccountNumberFormat,
pub network_status: AccountVerificationInsightsNetworkStatus,
pub previous_returns: Option<AccountVerificationInsightsPreviousReturns>,
}Expand description
Insights from performing database verification for the account. Only returned for Auth Items created via Database Insights.
Fields§
§account_number_format: AccountVerificationInsightsAccountNumberFormatIndicator of account number format validity for institution.
valid: indicates that the account number has a correct format for the institution.
invalid: indicates that the account number has an incorrect format for the institution.
unknown: indicates that there was not enough information to determine whether the format is correct for the institution.
network_status: AccountVerificationInsightsNetworkStatusStatus information about the account and routing number in the Plaid network.
previous_returns: Option<AccountVerificationInsightsPreviousReturns>Information about known ACH returns for the account and routing number.
Trait Implementations§
Source§impl Clone for AccountVerificationInsights
impl Clone for AccountVerificationInsights
Source§fn clone(&self) -> AccountVerificationInsights
fn clone(&self) -> AccountVerificationInsights
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 Debug for AccountVerificationInsights
impl Debug for AccountVerificationInsights
Source§impl<'de> Deserialize<'de> for AccountVerificationInsights
impl<'de> Deserialize<'de> for AccountVerificationInsights
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 AccountVerificationInsights
impl RefUnwindSafe for AccountVerificationInsights
impl Send for AccountVerificationInsights
impl Sync for AccountVerificationInsights
impl Unpin for AccountVerificationInsights
impl UnwindSafe for AccountVerificationInsights
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