plaid2.model.income_verification_documents_download_request module

class plaid2.model.income_verification_documents_download_request.IncomeVerificationDocumentsDownloadRequest(*, income_verification_id: Optional[str] = None, document_id: Optional[str] = None, access_token: Optional[str] = None)[source]

Bases: BaseModel

access_token: Optional[str]

The access token associated with the Item data is being requested for.

dict(**kwargs: Any) Dict[str, Any][source]

Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict

document_id: Optional[str]

The document ID to download. If passed, a single document will be returned in the resulting zip file, rather than all document

income_verification_id: Optional[str]

The ID of the verification.

json(**kwargs: Any) str[source]

Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json

classmethod parse_obj(data: Any) IncomeVerificationDocumentsDownloadRequest[source]

Parse a dict into the object. Takes same keyword arguments as pydantic.BaseModel.parse_obj

classmethod parse_raw(b: Union[bytes, str], **kwargs: Any) IncomeVerificationDocumentsDownloadRequest[source]

Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw