plaid2.model.income_summary_field_string module

class plaid2.model.income_summary_field_string.IncomeSummaryFieldString(*, value: str, verification_status: str)[source]

Bases: BaseModel

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

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

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) IncomeSummaryFieldString[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) IncomeSummaryFieldString[source]

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

value: str

The value of the field.

verification_status: str

The verification status. One of the following:

“VERIFIED”: The information was successfully verified.

“UNVERIFIED”: The verification has not yet been performed.

“NEEDS_INFO”: The verification was attempted but could not be completed due to missing information.

UNABLE_TO_VERIFY”: The verification was performed and the information could not be verified.

“UNKNOWN”: The verification status is unknown.