Struct plaid_openapi::model::IdentityVerificationResponse
source · [−]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: IdentityVerificationIdID of the associated Identity Verification attempt.
client_user_id: ClientUserIdAn identifier to help you connect this object to your internal systems. For example, your database ID corresponding to this object.
created_at: TimestampAn 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.
A shareable URL that can be sent directly to the user to complete verification
template: IdentityVerificationTemplateReferenceThe resource ID and version number of the template configuring the behavior of a given identity verification.
user: IdentityVerificationUserDataThe identity data that was either collected from the user or provided via API in order to perform an identity verification.
status: IdentityVerificationStatusThe 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: IdentityVerificationStepSummaryEach 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: RequestIdA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
Trait Implementations
sourceimpl Debug for IdentityVerificationResponse
impl Debug for IdentityVerificationResponse
sourceimpl<'de> Deserialize<'de> for IdentityVerificationResponse
impl<'de> Deserialize<'de> for IdentityVerificationResponse
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 IdentityVerificationResponse
impl Send for IdentityVerificationResponse
impl Sync for IdentityVerificationResponse
impl Unpin for IdentityVerificationResponse
impl UnwindSafe for IdentityVerificationResponse
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