Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.69 KB

ThreadedComment.md

File metadata and controls

42 lines (36 loc) · 1.69 KB

Shortcut::ThreadedComment

Properties

Name Type Description Notes
app_url String The Shortcut application url for the Comment.
entity_type String A string description of this resource.
deleted Boolean True/false boolean indicating whether the Comment is deleted.
mention_ids Array<String> Deprecated: use member_mention_ids.
author_id String The unique ID of the Member that authored the Comment.
member_mention_ids Array<String> An array of Member IDs that have been mentioned in this Comment.
comments Array<ThreadedComment> A nested array of threaded comments.
updated_at Time The time/date the Comment was updated.
group_mention_ids Array<String> An array of Group IDs that have been mentioned in this Comment.
external_id String This field can be set to another unique ID. In the case that the Comment has been imported from another tool, the ID in the other tool can be indicated here.
id Integer The unique ID of the Comment.
created_at Time The time/date the Comment was created.
text String The text of the Comment.

Example

require 'shortcut_client_ruby'

instance = Shortcut::ThreadedComment.new(
  app_url: null,
  entity_type: null,
  deleted: null,
  mention_ids: null,
  author_id: null,
  member_mention_ids: null,
  comments: null,
  updated_at: null,
  group_mention_ids: null,
  external_id: null,
  id: null,
  created_at: null,
  text: null
)