all(Gets the subTasks associated with the specified task id.taskId
):Promise
<SubTask
[]>
string
Promise
<SubTask
[]>
the subTasks associated with the specified task id.
create(Creates a new subTask for the specified task id and returns the newly created subTask.request
):Promise
<SubTask
>
CreateSubTaskRequest
the create request.
Promise
<SubTask
>
delete(Marks subTask with the specified id and parent task id as deleted and returns the deleted subTask.id
,taskId
):Promise
<SubTask
>
string
string
Promise
<SubTask
>
get(Gets the subTask associated with the specified id and parent task id.id
,taskId
):Promise
<SubTask
>
string
string
Promise
<SubTask
>
the subTask associated with the specified id and parent task id.
update(Updates a subTask with the specified id and returns the updated subTask.request
):Promise
<SubTask
>
UpdateSubTaskRequest
the update request.
Promise
<SubTask
>