pub struct LegalEntityPersonVerification {
pub additional_document: Option<LegalEntityPersonVerificationDocument>,
pub details: Option<String>,
pub details_code: Option<String>,
pub document: Option<LegalEntityPersonVerificationDocument>,
pub status: String,
}
Fields§
§additional_document: Option<LegalEntityPersonVerificationDocument>
A document showing address, either a passport, local ID card, or utility bill from a well-known utility company.
details: Option<String>
A user-displayable string describing the verification state for the person. For example, this may say “Provided identity information could not be verified”.
details_code: Option<String>
One of document_address_mismatch
, document_dob_mismatch
, document_duplicate_type
, document_id_number_mismatch
, document_name_mismatch
, document_nationality_mismatch
, failed_keyed_identity
, or failed_other
.
A machine-readable code specifying the verification state for the person.
document: Option<LegalEntityPersonVerificationDocument>
§status: String
The state of verification for the person.
Possible values are unverified
, pending
, or verified
.
Please refer guide to handle verification updates.
Trait Implementations§
Source§impl Clone for LegalEntityPersonVerification
impl Clone for LegalEntityPersonVerification
Source§fn clone(&self) -> LegalEntityPersonVerification
fn clone(&self) -> LegalEntityPersonVerification
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl FromValueOpt for LegalEntityPersonVerification
impl FromValueOpt for LegalEntityPersonVerification
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for LegalEntityPersonVerification
impl RefUnwindSafe for LegalEntityPersonVerification
impl Send for LegalEntityPersonVerification
impl Sync for LegalEntityPersonVerification
impl Unpin for LegalEntityPersonVerification
impl UnwindSafe for LegalEntityPersonVerification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more