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

com.rmn.testrail.entity.TestRunGroup Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package com.rmn.testrail.entity;

import org.codehaus.jackson.annotate.JsonProperty;

import java.util.List;

/**
 * This object represents the entity you get in a TestRun under the "entries" element. It's not there when you query lists of TestRuns, only when you query individual TestRuns
 *
 * @author mmerrell
 */
public class TestRunGroup extends BaseEntity {
    @JsonProperty("id")
    private String id;
    public String getId() { return id; }
    public void setId( String id ) { this.id = id; }

    @JsonProperty("name")
    private String name;
    public String getName() { return name; }
    public void setName(String name) { this.name = name; }

    @JsonProperty("suite_id")
    private Integer suiteId;
    public Integer getSuiteId() { return suiteId; }
    public void setSuiteId(Integer suiteId) { this.suiteId = suiteId; }

    @JsonProperty("runs")
    private List runs;
    public List getRuns() { return runs; }
    public void setRuns(List runs) { this.runs = runs; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy