com.huaweicloud.sdk.cloudtest.v1.model.ShowPlansRequest Maven / Gradle / Ivy
package com.huaweicloud.sdk.cloudtest.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
/**
* Request Object
*/
public class ShowPlansRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "project_id")
private String projectId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "name")
private String name;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "current_stage")
private String currentStage;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "offset")
private Integer offset;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "limit")
private Integer limit;
public ShowPlansRequest withProjectId(String projectId) {
this.projectId = projectId;
return this;
}
/**
* 项目id,项目唯一标识,固定长度32位字符
* @return projectId
*/
public String getProjectId() {
return projectId;
}
public void setProjectId(String projectId) {
this.projectId = projectId;
}
public ShowPlansRequest withName(String name) {
this.name = name;
return this;
}
/**
* 模糊查询使用(针对测试计划名称)
* @return name
*/
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public ShowPlansRequest withCurrentStage(String currentStage) {
this.currentStage = currentStage;
return this;
}
/**
* 测试计划所处阶段(create,design,execute,report)
* @return currentStage
*/
public String getCurrentStage() {
return currentStage;
}
public void setCurrentStage(String currentStage) {
this.currentStage = currentStage;
}
public ShowPlansRequest withOffset(Integer offset) {
this.offset = offset;
return this;
}
/**
* 页号,取值范围为1-20000
* @return offset
*/
public Integer getOffset() {
return offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
public ShowPlansRequest withLimit(Integer limit) {
this.limit = limit;
return this;
}
/**
* 每页显示的条目数量,取值范围为1-200
* @return limit
*/
public Integer getLimit() {
return limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ShowPlansRequest that = (ShowPlansRequest) obj;
return Objects.equals(this.projectId, that.projectId) && Objects.equals(this.name, that.name)
&& Objects.equals(this.currentStage, that.currentStage) && Objects.equals(this.offset, that.offset)
&& Objects.equals(this.limit, that.limit);
}
@Override
public int hashCode() {
return Objects.hash(projectId, name, currentStage, offset, limit);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShowPlansRequest {\n");
sb.append(" projectId: ").append(toIndentedString(projectId)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" currentStage: ").append(toIndentedString(currentStage)).append("\n");
sb.append(" offset: ").append(toIndentedString(offset)).append("\n");
sb.append(" limit: ").append(toIndentedString(limit)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}