linear.commentresponse
Home > @runlightyear/linear > CommentResponse
CommentResponse interface
Signature:interface CommentResponse
Required Properties
Property | Modifiers | Type | Description |
---|---|---|---|
archivedAt | DateTime | The time at which the entity was archived. Null if the entity has not been archived. | |
body | string | The comment content in markdown format. | |
bodyData | string | The comment content as a Prosemirror document. | |
createdAt | DateTime | The time at which the entity was created. | |
editedAt | DateTime | The time user edited the comment. | |
externalUser | { id: LinearID; name: string; } | [ALPHA] The external user who wrote the comment. | |
id | LinearID | The unique identifier of the entity. | |
issue | { id: string; title: string; } | The issue that the comment is associated with. | |
parent | { id: LinearID; } | The parent comment under which the current comment is nested. | |
reactionData | object | Emoji reaction summary, grouped by emoji type | |
updatedAt | DateTime | The last time at which the entity was meaningfully updated, i.e. for all changes of syncable properties except those for which updates should not produce an update to updatedAt (see skipUpdatedAtKeys). This is the same as the creation time if the entity hasn't been updated after creation. | |
url | string | Comment's URL. | |
user | { id: LinearID; name: string; } |