pub struct DocumentMetadata {
    pub name: Option<String>,
    pub status: Option<String>,
    pub doc_id: Option<String>,
    pub doc_type: Option<DocType>,
}

Fields

name: Option<String>

The name of the document.

status: Option<String>

The processing status of the document.

doc_id: Option<String>

An identifier of the document that is also present in the paystub response.

doc_type: Option<DocType>

The type of document.

DOCUMENT_TYPE_PAYSTUB: A paystub.

DOCUMENT_TYPE_BANK_STATEMENT: A bank statement.

DOCUMENT_TYPE_US_TAX_W2: A W-2 wage and tax statement provided by a US employer reflecting wages earned by the employee.

DOCUMENT_TYPE_US_MILITARY_ERAS: An electronic Retirement Account Statement (eRAS) issued by the US military.

DOCUMENT_TYPE_US_MILITARY_LES: A Leave and Earnings Statement (LES) issued by the US military.

DOCUMENT_TYPE_US_MILITARY_CLES: A Civilian Leave and Earnings Statment (CLES) issued by the US military.

DOCUMENT_TYPE_GIG: Used to indicate that the income is related to gig work. Does not necessarily correspond to a specific document type.

DOCUMENT_TYPE_NONE: Used to indicate that there is no underlying document for the data.

UNKNOWN: Document type could not be determined.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more