change userId type in estimation
This commit is contained in:
parent
342eae1d87
commit
65f8982fd4
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ class Address(BaseModel):
|
|||
zipcode: Optional[str] = Field("", description="Zip code")
|
||||
|
||||
class EstimationRequest(BaseModel):
|
||||
userId: Optional[str] = Field(None, description="Unique identifier")
|
||||
userId: str | int | None = Field(None, description="Unique identifier")
|
||||
applicants: List[Applicant]
|
||||
plans: List[Plan]
|
||||
phq: PHQ
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue