pub struct LegalEntityCompanyVerificationDocument {
pub back: Option<Expandable<File>>,
pub details: Option<String>,
pub details_code: Option<String>,
pub front: Option<Expandable<File>>,
}
Fields§
§back: Option<Expandable<File>>
The back of a document returned by a file upload with a purpose
value of additional_verification
.
details: Option<String>
A user-displayable string describing the verification state of this document.
details_code: Option<String>
One of document_corrupt
, document_expired
, document_failed_copy
, document_failed_greyscale
, document_failed_other
, document_failed_test_mode
, document_fraudulent
, document_incomplete
, document_invalid
, document_manipulated
, document_not_readable
, document_not_uploaded
, document_type_not_supported
, or document_too_large
.
A machine-readable code specifying the verification state for this document.
front: Option<Expandable<File>>
The front of a document returned by a file upload with a purpose
value of additional_verification
.
Trait Implementations§
Source§impl Clone for LegalEntityCompanyVerificationDocument
impl Clone for LegalEntityCompanyVerificationDocument
Source§fn clone(&self) -> LegalEntityCompanyVerificationDocument
fn clone(&self) -> LegalEntityCompanyVerificationDocument
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 LegalEntityCompanyVerificationDocument
impl FromValueOpt for LegalEntityCompanyVerificationDocument
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for LegalEntityCompanyVerificationDocument
impl RefUnwindSafe for LegalEntityCompanyVerificationDocument
impl Send for LegalEntityCompanyVerificationDocument
impl Sync for LegalEntityCompanyVerificationDocument
impl Unpin for LegalEntityCompanyVerificationDocument
impl UnwindSafe for LegalEntityCompanyVerificationDocument
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