com.rmn.testrail.entity.PlanEntryRun Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testrailsdk Show documentation
Show all versions of testrailsdk Show documentation
A package for managing your TestRail information
package com.rmn.testrail.entity;
import org.codehaus.jackson.annotate.JsonProperty;
import java.util.List;
/**
* @author jsteigel
*/
public class PlanEntryRun extends BaseEntity {
@JsonProperty("assignedto_id")
private Integer assignedToId;
public Integer getAssignedToId() { return assignedToId; }
public void setAssignedToId(Integer assignedToId) { this.assignedToId = assignedToId; }
@JsonProperty("include_all")
private Boolean includeAll;
public Boolean getIncludeAll() { return includeAll; }
public void setIncludeAll(Boolean includeAll) { this.includeAll = includeAll; }
@JsonProperty("case_ids")
private List caseIds;
public List getCaseIds() { return caseIds; }
public void setCaseIds(List caseIds) { this.caseIds = caseIds; }
@JsonProperty("config_ids")
private List configIds;
public List getConfigIds() { return configIds; }
public void setConfigIds(List configIds) { this.configIds = configIds; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy