com.huaweicloud.sdk.cloudtest.v1.model.ListOwnTestCasesResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.cloudtest.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaweicloud.sdk.core.SdkResponse;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Response Object
*/
public class ListOwnTestCasesResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "total")
private Integer total;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "value")
private List value = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "reason")
private String reason;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "page_size")
private Integer pageSize;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "page_no")
private Integer pageNo;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "has_more")
private Boolean hasMore;
public ListOwnTestCasesResponse withTotal(Integer total) {
this.total = total;
return this;
}
/**
* 起始记录数 大于 实际总条数时, 值为0, 分页请求才有此值
* @return total
*/
public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
public ListOwnTestCasesResponse withValue(List value) {
this.value = value;
return this;
}
public ListOwnTestCasesResponse addValueItem(TestCaseVo valueItem) {
if (this.value == null) {
this.value = new ArrayList<>();
}
this.value.add(valueItem);
return this;
}
public ListOwnTestCasesResponse withValue(Consumer> valueSetter) {
if (this.value == null) {
this.value = new ArrayList<>();
}
valueSetter.accept(this.value);
return this;
}
/**
* 实际的数据类型:单个对象,集合 或 NULL
* @return value
*/
public List getValue() {
return value;
}
public void setValue(List value) {
this.value = value;
}
public ListOwnTestCasesResponse withReason(String reason) {
this.reason = reason;
return this;
}
/**
* 业务失败的提示内容,对内接口才有此值
* @return reason
*/
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public ListOwnTestCasesResponse withPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Get pageSize
* @return pageSize
*/
public Integer getPageSize() {
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public ListOwnTestCasesResponse withPageNo(Integer pageNo) {
this.pageNo = pageNo;
return this;
}
/**
* Get pageNo
* @return pageNo
*/
public Integer getPageNo() {
return pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public ListOwnTestCasesResponse withHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
/**
* Get hasMore
* @return hasMore
*/
public Boolean getHasMore() {
return hasMore;
}
public void setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListOwnTestCasesResponse that = (ListOwnTestCasesResponse) obj;
return Objects.equals(this.total, that.total) && Objects.equals(this.value, that.value)
&& Objects.equals(this.reason, that.reason) && Objects.equals(this.pageSize, that.pageSize)
&& Objects.equals(this.pageNo, that.pageNo) && Objects.equals(this.hasMore, that.hasMore);
}
@Override
public int hashCode() {
return Objects.hash(total, value, reason, pageSize, pageNo, hasMore);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListOwnTestCasesResponse {\n");
sb.append(" total: ").append(toIndentedString(total)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).append("\n");
sb.append(" reason: ").append(toIndentedString(reason)).append("\n");
sb.append(" pageSize: ").append(toIndentedString(pageSize)).append("\n");
sb.append(" pageNo: ").append(toIndentedString(pageNo)).append("\n");
sb.append(" hasMore: ").append(toIndentedString(hasMore)).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 ");
}
}