pub enum DocType {
Unknown,
DocumentTypePaystub,
DocumentTypeBankStatement,
DocumentTypeUsTaxW2,
DocumentTypeUsMilitaryEras,
DocumentTypeUsMilitaryLes,
DocumentTypeUsMilitaryCles,
DocumentTypeGig,
DocumentTypeNone,
DocumentTypeUsTax1099Misc,
DocumentTypeUsTax1099K,
DocumentTypePlaidGeneratedPaystubPdf,
}
Expand description
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 Statement (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.
DOCUMENT_TYPE_PLAID_GENERATED_PAYSTUB_PDF
: Used to indicate that the PDF for the paystub was generated by Plaid.
UNKNOWN
: Document type could not be determined.