Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 1.75 KB

Task.md

File metadata and controls

44 lines (38 loc) · 1.75 KB

Shortcut::Task

Properties

Name Type Description Notes
description String Full text of the Task.
entity_type String A string description of this resource.
story_id Integer The unique identifier of the parent Story.
mention_ids Array<String> Deprecated: use member_mention_ids.
member_mention_ids Array<String> An array of UUIDs of Members mentioned in this Task.
completed_at Time The time/date the Task was completed.
updated_at Time The time/date the Task was updated.
group_mention_ids Array<String> An array of UUIDs of Groups mentioned in this Task.
owner_ids Array<String> An array of UUIDs of the Owners of this Task.
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.
id Integer The unique ID of the Task.
position Integer The number corresponding to the Task's position within a list of Tasks on a Story.
complete Boolean True/false boolean indicating whether the Task has been completed.
created_at Time The time/date the Task was created.

Example

require 'shortcut_client_ruby'

instance = Shortcut::Task.new(
  description: null,
  entity_type: null,
  story_id: null,
  mention_ids: null,
  member_mention_ids: null,
  completed_at: null,
  updated_at: null,
  group_mention_ids: null,
  owner_ids: null,
  external_id: null,
  id: null,
  position: null,
  complete: null,
  created_at: null
)