All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qase.commons.models.domain.StepResult Maven / Gradle / Ivy

The newest version!
package io.qase.commons.models.domain;


import java.util.*;

public class StepResult {
    public String id = UUID.randomUUID().toString();
    public Data data;
    public String parentId;
    public StepExecution execution;
    public Throwable throwable;
    public List attachments;
    public List steps;

    public StepResult() {
        this.attachments = new ArrayList<>();
        this.steps = new ArrayList<>();
        this.execution = new StepExecution();
        this.data = new Data();
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy