Skip to content

Commit cf5d874

Browse files
authored
Merge pull request #8 from huntflow/INT-203_fix_field
Fix field type
2 parents 621d1a3 + b9c023c commit cf5d874

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

huntflow_webhook_models/common_models/applicant.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class Applicant(BaseModel):
8484

8585
class Respondent(BaseModel):
8686
account_id: int = Field(..., description="Account ID", example=1)
87-
custom_id: int = Field(..., description="Custom ID", example=1)
87+
custom_id: Optional[int] = Field(None, description="Custom ID", example=1)
8888
name: Optional[str] = Field(None, description="Respondent name", example="John")
8989
email: str = Field(..., description="Respondent email", example="[email protected]")
9090

0 commit comments

Comments
 (0)