pub struct CheckView {
pub created_at: Option<i32>,
pub decided_at: Option<i32>,
pub decided_by: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub provider: Option<String>,
pub status: Option<String>,
pub subject_id: Option<String>,
pub updated_at: Option<i32>,
pub verify_url: Option<String>,
}Fields§
§created_at: Option<i32>CreatedAt is the unix second the verification was started.
decided_at: Option<i32>DecidedAt is the unix second a terminal status was recorded.
decided_by: Option<String>DecidedBy records who settled a terminal status: the provider name, or a reviewer’s user id for a recorded manual decision.
id: Option<String>ID is the verification’s opaque id.
kind: Option<String>Kind is the party type: "individual" (KYC) or "business" (KYB).
provider: Option<String>Provider is the verification provider this check runs through.
status: Option<String>Status is the check’s state: pending, provider_verified, provider_rejected, manual_review, or expired (provider-reported), or reviewer_confirmed — the one value a privileged human reviewer records, never a provider.
subject_id: Option<String>SubjectID is the opaque id of the subject under verification.
updated_at: Option<i32>UpdatedAt is the unix second the verification last changed.
verify_url: Option<String>VerifyURL is the provider’s hosted verification flow for the subject, when one exists.