OBJECT

Attachment

Step Attachment type

link GraphQL Schema definition

1type Attachment {
2
3# Id of the attachment.
4id: String
5
6# Filename of the attachment.
7filename: String
8
9# If the file is stored in Jira.
10storedInJira: Boolean
11
12# Download link of the attachment.
13downloadLink: String
14
15}