diff --git a/huntflow_api_client/models/common.py b/huntflow_api_client/models/common.py index ad5c50b..b1bbcde 100644 --- a/huntflow_api_client/models/common.py +++ b/huntflow_api_client/models/common.py @@ -12,15 +12,15 @@ VacancyState, ) -IncEx: typing_extensions.TypeAlias = "Set[int] | Set[str] | Dict[int, Any] | Dict[str, Any] | None" +_FieldSet: typing_extensions.TypeAlias = "Set[int] | Set[str] | Dict[int, Any] | Dict[str, Any]" class JsonRequestModel(BaseModel): def jsonable_dict( self, *, - include: IncEx = None, - exclude: IncEx = None, + include: Optional[_FieldSet] = None, + exclude: Optional[_FieldSet] = None, by_alias: bool = False, exclude_unset: bool = False, exclude_defaults: bool = False,