OBJECT

Evidence

Evidence Type

link GraphQL Schema definition

1type Evidence {
2
3# Id of the Evidence.
4id: String
5
6# Filename of the Evidence.
7filename: String
8
9# If file is stored in Jira
10storedInJira: Boolean
11
12# Download link of the Evidence.
13downloadLink: String
14
15# File size in bytes.
16size: Int
17
18# Evidence creation timestamp.
19createdOn: String
20
21}