[][src]Struct stripe::LegalEntityCompanyVerificationDocument

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

impl Clone for LegalEntityCompanyVerificationDocument[src]

impl Debug for LegalEntityCompanyVerificationDocument[src]

impl<'de> Deserialize<'de> for LegalEntityCompanyVerificationDocument[src]

impl Serialize for LegalEntityCompanyVerificationDocument[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.