OBJECT

UpdateTestRunStepResult

Update Test Run Step Result Type

link GraphQL Schema definition

1type UpdateTestRunStepResult {
2
3# Ids of the added Defects.
4addedDefects: [String]
5
6# Ids of the removed Defects.
7removedDefects: [String]
8
9# Ids of the added Evidence.
10addedEvidence: [String]
11
12# Ids of the removed Evidence.
13removedEvidence: [String]
14
15# Warnings generated during the operation.
16warnings: [String]
17
18}