linear.issueresponse
Home > @runlightyear/linear > IssueResponse
IssueResponse interface
Signature:interface IssueResponse
Required Properties
Property | Modifiers | Type | Description |
---|---|---|---|
archivedAt | DateTime | The time at which the entity was archived. Null if the entity has not been archived. | |
assignee | { id: LinearID; name: string; } | The user to whom the issue is assigned to. | |
autoArchivedAt | DateTime | The time at which the issue was automatically archived by the auto pruning process. | |
autoClosedAt | DateTime | The time at which the issue was automatically closed by the auto pruning process. | |
branchName | string | Suggested branch name for the issue. | |
canceledAt | DateTime | The time at which the issue was moved into canceled state. | |
completedAt | DateTime | The time at which the issue was moved into completed state. | |
createdAt | DateTime | The time at which the entity was created. | |
creator | { id: LinearID; name: string; } | The user who created the issue. | |
customerTicketCount | number | Returns the number of Attachment resources which are created by customer support ticketing systems (e.g. Zendesk). | |
cycle | { id: LinearID; name: string; } | The cycle that the issue is associated with. | |
description | String | The issue's description in markdown format. | |
dueDate | TimelessDate | The date at which the issue is due. | |
estimate | number | The estimate of the complexity of the issue. | |
externalUserCreator | { id: LinearID; name: string; } | [ALPHA] The external user who created the issue. | |
id | LinearID | The unique identifier of the entity. | |
identifier | string | Issue's human readable identifier (e.g. ENG-123). | |
number | number | The issue's unique number. | |
parent | { id: LinearID; title: string; } | The parent of the issue. | |
previousIdentifiers | Array<string> | Previous identifiers of the issue if it has been moved between teams. | |
priority | number | The priority of the issue. | |
priorityLabel | string | Label for the priority. | |
project | { id: LinearID; name: string; } | The project that the issue is associated with. | |
projectMilestone | { id: LinearID; name: string; } | [ALPHA] The projectMilestone that the issue is associated with. | |
snoozedBy | { id: LinearID; name: string; } | The user who snoozed the issue. | |
snoozedUntilAt | DateTime | The time until an issue will be snoozed in Triage view. | |
sortOrder | number | The order of the item in relation to other items in the organization. | |
startedAt | DateTime | The time at which the issue was moved into started state. | |
startedTriageAt | DateTime | The time at which the issue entered triage. | |
state | { id: LinearID; name: string; } | The workflow state that the issue is associated with. | |
subIssueSortOrder | number | The order of the item in the sub-issue list. Only set if the issue has a parent. | |
team | { id: LinearID; name: string; } | The team that the issue is associated with. | |
title | string | The issue's title. | |
trashed | boolean | A flag that indicates whether the issue is in the trash bin. | |
triagedAt | DateTime | The time at which the issue left triage. | |
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 | Issue URL. |