plaid2.model.income_verification_precheck_military_info module

class plaid2.model.income_verification_precheck_military_info.IncomeVerificationPrecheckMilitaryInfo(*, branch: Optional[str] = None, is_active_duty: Optional[bool] = None)[source]

Bases: BaseModel

branch: Optional[str]

If the user is currently serving in the US military, the branch of the military in which they are serving Valid values: ‘AIR FORCE’, ‘ARMY’, ‘COAST GUARD’, ‘MARINES’, ‘NAVY’, ‘UNKNOWN’

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

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

is_active_duty: Optional[bool]

Is the user currently active duty in the US military

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

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