From 7a9e82cb5fcd5ea74d0b2714d869cdd85472eb9f Mon Sep 17 00:00:00 2001 From: koval Date: Mon, 15 Dec 2025 16:59:02 +0300 Subject: [PATCH] Add rejection_reason field. --- huntflow_api_client/models/response/applicants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/huntflow_api_client/models/response/applicants.py b/huntflow_api_client/models/response/applicants.py index 6c0ea4b..5f2a8e5 100644 --- a/huntflow_api_client/models/response/applicants.py +++ b/huntflow_api_client/models/response/applicants.py @@ -15,6 +15,7 @@ class ApplicantTag(BaseModel): class ApplicantLink(BaseModel): id: Optional[int] = Field(None, description="Link ID") status: int = Field(..., description="Vacancy status ID") + rejection_reason: Optional[int] = Field(None, description="Rejection reason ID") updated: datetime = Field( ..., description="The date of the applicant's update at a vacancy",