com.github.bogdanlivadariu.integrations.zapi.models.ZapiExecution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zapi Show documentation
Show all versions of zapi Show documentation
Provides wrappers over ZAPI to create test cycles for Zephyr jira plugin
The newest version!
package com.github.bogdanlivadariu.integrations.zapi.models;
public class ZapiExecution {
private Integer id;
private Integer orderId;
private String executionStatus;
private String comment;
public Integer getId() {
return id;
}
public Integer getOrderId() {
return orderId;
}
public String getExecutionStatus() {
return executionStatus;
}
public String getComment() {
return comment;
}
}