Name |
Type |
Description |
Notes |
description |
String |
The Task's description. |
[optional] |
owner_ids |
Array<String> |
An array of UUIDs of the owners of this story. |
[optional] |
complete |
Boolean |
A true/false boolean indicating whether the task is complete. |
[optional] |
before_id |
Integer |
Move task before this task ID. |
[optional] |
after_id |
Integer |
Move task after this task ID. |
[optional] |
require 'shortcut_client_ruby'
instance = Shortcut::UpdateTask.new(
description: null,
owner_ids: null,
complete: null,
before_id: null,
after_id: null
)