Skip to content

Commit

Permalink
Delete removed field from InterviewType model.
Browse files Browse the repository at this point in the history
  • Loading branch information
koval committed Jul 26, 2024
1 parent ad04c83 commit bc35819
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion huntflow_api_client/models/response/interview_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ class InterviewType(BaseModel):
id: int = Field(..., description="Interview type ID", examples=[20])
name: str = Field(..., description="Interview type name", examples=["Phone interview"])
account: int = Field(..., description="Organization ID", examples=[42])
removed: Optional[datetime] = Field(None, description="Date and time of removing")
order: int = Field(..., description="Order number")
type: InterviewTypeEnum = Field(
...,
Expand Down

0 comments on commit bc35819

Please sign in to comment.