com.huaweicloud.sdk.cloudtest.v1.model.ListBranchesResponse 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 ListBranchesResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "total")
private Integer total;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "project_id")
private String projectId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "values")
private List values = null;
public ListBranchesResponse 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 ListBranchesResponse withProjectId(String projectId) {
this.projectId = projectId;
return this;
}
/**
* 项目ID
* @return projectId
*/
public String getProjectId() {
return projectId;
}
public void setProjectId(String projectId) {
this.projectId = projectId;
}
public ListBranchesResponse withValues(List values) {
this.values = values;
return this;
}
public ListBranchesResponse addValuesItem(ExternalBranchInfoVo valuesItem) {
if (this.values == null) {
this.values = new ArrayList<>();
}
this.values.add(valuesItem);
return this;
}
public ListBranchesResponse withValues(Consumer> valuesSetter) {
if (this.values == null) {
this.values = new ArrayList<>();
}
valuesSetter.accept(this.values);
return this;
}
/**
* 实际的数据类型:单个对象,集合 或 NULL
* @return values
*/
public List getValues() {
return values;
}
public void setValues(List values) {
this.values = values;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListBranchesResponse that = (ListBranchesResponse) obj;
return Objects.equals(this.total, that.total) && Objects.equals(this.projectId, that.projectId)
&& Objects.equals(this.values, that.values);
}
@Override
public int hashCode() {
return Objects.hash(total, projectId, values);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListBranchesResponse {\n");
sb.append(" total: ").append(toIndentedString(total)).append("\n");
sb.append(" projectId: ").append(toIndentedString(projectId)).append("\n");
sb.append(" values: ").append(toIndentedString(values)).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 ");
}
}