plaid2.model.identity_verification_user_address module

class plaid2.model.identity_verification_user_address.IdentityVerificationUserAddress(*, region: Optional[str] = None, street: Optional[str] = None, postal_code: Optional[str] = None, country: str, street_2: Optional[str] = None, city: Optional[str] = None)[source]

Bases: BaseModel

city: Optional[str]
country: str

Valid, capitalized, two-letter ISO code representing the country of this object. Must be in ISO 3166-1 alpha-2 form.

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

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

postal_code: Optional[str]
region: Optional[str]
street: Optional[str]
street_2: Optional[str]

Extra street information, like an apartment or suite number.