Skip to content

Commit

Permalink
#317 - Review task types
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamforka committed Jan 18, 2024
1 parent 943e330 commit ec84d42
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions thehive4py/types/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class InputTask(InputTaskRequired, total=False):
order: int
dueDate: int
assignee: str
mandatory: bool


class OutputTaskRequired(TypedDict):
Expand All @@ -27,6 +28,7 @@ class OutputTaskRequired(TypedDict):
status: str
flag: bool
order: int
mandatory: bool
extraData: dict


Expand All @@ -51,6 +53,7 @@ class InputUpdateTask(TypedDict, total=False):
order: int
dueDate: int
assignee: str
mandatory: bool


class InputBulkUpdateTask(InputUpdateTask):
Expand Down

0 comments on commit ec84d42

Please sign in to comment.