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

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more