pub struct LinkTokenCreateRequestIncomeVerification {
pub income_verification_id: Option<String>,
pub asset_report_id: Option<String>,
pub precheck_id: Option<String>,
pub access_tokens: Option<Vec<AccessToken>>,
}Fields
income_verification_id: Option<String>The income_verification_id of the verification instance, as provided by /income/verification/create.
asset_report_id: Option<String>The asset_report_id of an asset report associated with the user, as provided by /asset_report/create. Providing an asset_report_id is optional and can be used to verify the user through a streamlined flow. If provided, the bank linking flow will be skipped.
precheck_id: Option<String>The ID of a precheck created with /income/verification/precheck. Will be used to improve conversion of the income verification flow by streamlining the Link interface presented to the end user.
access_tokens: Option<Vec<AccessToken>>An array of access tokens corresponding to the Items that will be cross-referenced with the product data. If the transactions product was not initialized for the Items during link, it will be initialized after this Link session.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for LinkTokenCreateRequestIncomeVerification
impl<'de> Deserialize<'de> for LinkTokenCreateRequestIncomeVerification
sourcefn 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 RefUnwindSafe for LinkTokenCreateRequestIncomeVerification
impl Send for LinkTokenCreateRequestIncomeVerification
impl Sync for LinkTokenCreateRequestIncomeVerification
impl Unpin for LinkTokenCreateRequestIncomeVerification
impl UnwindSafe for LinkTokenCreateRequestIncomeVerification
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more