Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 750 Bytes

UpdateTask.md

File metadata and controls

26 lines (20 loc) · 750 Bytes

Shortcut::UpdateTask

Properties

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]

Example

require 'shortcut_client_ruby'

instance = Shortcut::UpdateTask.new(
  description: null,
  owner_ids: null,
  complete: null,
  before_id: null,
  after_id: null
)