File size: 265 Bytes
ef1ad9e |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from pydantic import BaseModel, validator
class PersonalInfoSchema(BaseModel):
firstName: str
lastName: str
phoneNumber: str
NMLS: str
isOrganization: bool
organizationNMLS: str
userId: str
stateToken: str
role: str
|