Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 832 Bytes

EntityTemplateTask.md

File metadata and controls

24 lines (18 loc) · 832 Bytes

Shortcut::EntityTemplateTask

Properties

Name Type Description Notes
description String The Task description.
complete Boolean True/false boolean indicating whether the Task is completed. Defaults to false. [optional]
owner_ids Array<String> An array of UUIDs for any members you want to add as Owners on this new Task. [optional]
external_id String This field can be set to another unique ID. In the case that the Task has been imported from another tool, the ID in the other tool can be indicated here. [optional]

Example

require 'shortcut_client_ruby'

instance = Shortcut::EntityTemplateTask.new(
  description: null,
  complete: null,
  owner_ids: null,
  external_id: null
)