com.huaweicloud.sdk.cloudtest.v1.model.BatchDeleteTestCaseRequestBody 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.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/**
* 批量删除测试用例请求体
*/
public class BatchDeleteTestCaseRequestBody {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "service_id")
private Integer serviceId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "testcase_id_list")
private List testcaseIdList = null;
public BatchDeleteTestCaseRequestBody withServiceId(Integer serviceId) {
this.serviceId = serviceId;
return this;
}
/**
* 注册测试类型服务接口返回的服务id,取值范围为10-9999
* @return serviceId
*/
public Integer getServiceId() {
return serviceId;
}
public void setServiceId(Integer serviceId) {
this.serviceId = serviceId;
}
public BatchDeleteTestCaseRequestBody withTestcaseIdList(List testcaseIdList) {
this.testcaseIdList = testcaseIdList;
return this;
}
public BatchDeleteTestCaseRequestBody addTestcaseIdListItem(String testcaseIdListItem) {
if (this.testcaseIdList == null) {
this.testcaseIdList = new ArrayList<>();
}
this.testcaseIdList.add(testcaseIdListItem);
return this;
}
public BatchDeleteTestCaseRequestBody withTestcaseIdList(Consumer> testcaseIdListSetter) {
if (this.testcaseIdList == null) {
this.testcaseIdList = new ArrayList<>();
}
testcaseIdListSetter.accept(this.testcaseIdList);
return this;
}
/**
* 测试用例唯一标识,数组长度小于50个
* @return testcaseIdList
*/
public List getTestcaseIdList() {
return testcaseIdList;
}
public void setTestcaseIdList(List testcaseIdList) {
this.testcaseIdList = testcaseIdList;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
BatchDeleteTestCaseRequestBody that = (BatchDeleteTestCaseRequestBody) obj;
return Objects.equals(this.serviceId, that.serviceId)
&& Objects.equals(this.testcaseIdList, that.testcaseIdList);
}
@Override
public int hashCode() {
return Objects.hash(serviceId, testcaseIdList);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BatchDeleteTestCaseRequestBody {\n");
sb.append(" serviceId: ").append(toIndentedString(serviceId)).append("\n");
sb.append(" testcaseIdList: ").append(toIndentedString(testcaseIdList)).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 ");
}
}