pub struct IdentityVerificationResponse {
Show 14 fields pub id: IdentityVerificationId, pub client_user_id: ClientUserId, pub created_at: Timestamp, pub completed_at: Option<TimestampNullable>, pub previous_attempt_id: Option<PreviousIdentityVerificationAttemptId>, pub shareable_url: Option<ShareableUrl>, pub template: IdentityVerificationTemplateReference, pub user: IdentityVerificationUserData, pub status: IdentityVerificationStatus, pub steps: IdentityVerificationStepSummary, pub documentary_verification: Option<DocumentaryVerification>, pub kyc_check: Option<KycCheckDetails>, pub watchlist_screening_id: Option<Value>, pub request_id: RequestId,
}

Fields

id: IdentityVerificationId

ID of the associated Identity Verification attempt.

client_user_id: ClientUserId

An identifier to help you connect this object to your internal systems. For example, your database ID corresponding to this object.

created_at: Timestamp

An ISO8601 formatted timestamp.

completed_at: Option<TimestampNullable>

An ISO8601 formatted timestamp.

previous_attempt_id: Option<PreviousIdentityVerificationAttemptId>

The ID for the Identity Verification preceding this session. This field will only be filled if the current Identity Verification is a retry of a previous attempt.

shareable_url: Option<ShareableUrl>

A shareable URL that can be sent directly to the user to complete verification

template: IdentityVerificationTemplateReference

The resource ID and version number of the template configuring the behavior of a given identity verification.

user: IdentityVerificationUserData

The identity data that was either collected from the user or provided via API in order to perform an identity verification.

status: IdentityVerificationStatus

The status of this Identity Verification attempt.

active - The Identity Verification attempt is incomplete. The user may have completed part of the session, but has neither failed or passed.

success - The Identity Verification attempt has completed, passing all steps defined to the associated Identity Verification template

failed - The user failed one or more steps in the session and was told to contact support.

expired - The Identity Verification attempt was active for more than 48 hours without being completed and was automatically marked as expired.

canceled - The Identity Verification attempt was canceled, either via the dashboard by a user, or via API. The user may have completed part of the session, but has neither failed or passed.

pending_review - The Identity Verification attempt template was configured to perform a screening that had one or more hits needing review.

steps: IdentityVerificationStepSummary

Each step will be one of the following values:

active - This step is the user’s current step. They are either in the process of completing this step, or they recently closed their Identity Verification attempt while in the middle of this step. Only one step will be marked as active at any given point.

success - The Identity Verification attempt has completed this step.

failed - The user failed this step. This can either call the user to fail the session as a whole, or cause them to fallback to another step depending on how the Identity Verification template is configured. A failed step does not imply a failed session.

waiting_for_prerequisite - The user needs to complete another step first, before they progress to this step. This step may never run, depending on if the user fails an earlier step or if the step is only run as a fallback.

not_applicable - This step will not be run for this session.

skipped - The retry instructions that created this Identity Verification attempt specified that this step should be skipped.

expired - This step had not yet been completed when the Identity Verification attempt as a whole expired.

canceled - The Identity Verification attempt was canceled before the user completed this step.

pending_review - The Identity Verification attempt template was configured to perform a screening that had one or more hits needing review.

manually_approved - The step was manually overridden to pass by a team member in the dashboard.

manually_rejected - The step was manually overridden to fail by a team member in the dashboard.

documentary_verification: Option<DocumentaryVerification>

data, images, analysis, and results from the documentary_verification step.

kyc_check: Option<KycCheckDetails>

The outcome of the kyc_check step.

watchlist_screening_id: Option<Value>request_id: RequestId

A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.

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