com.huaweicloud.sdk.osm.v2.model.ListOrderIncidentResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.osm.v2.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 ListOrderIncidentResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "totalCount")
private Integer totalCount;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "incidentInfoList")
private List incidentInfoList = null;
public ListOrderIncidentResponse withTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* 数据总量
* minimum: 0
* maximum: 65535
* @return totalCount
*/
public Integer getTotalCount() {
return totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public ListOrderIncidentResponse withIncidentInfoList(List incidentInfoList) {
this.incidentInfoList = incidentInfoList;
return this;
}
public ListOrderIncidentResponse addIncidentInfoListItem(IncidentInfo incidentInfoListItem) {
if (this.incidentInfoList == null) {
this.incidentInfoList = new ArrayList<>();
}
this.incidentInfoList.add(incidentInfoListItem);
return this;
}
public ListOrderIncidentResponse withIncidentInfoList(Consumer> incidentInfoListSetter) {
if (this.incidentInfoList == null) {
this.incidentInfoList = new ArrayList<>();
}
incidentInfoListSetter.accept(this.incidentInfoList);
return this;
}
/**
* 工单列表
* @return incidentInfoList
*/
public List getIncidentInfoList() {
return incidentInfoList;
}
public void setIncidentInfoList(List incidentInfoList) {
this.incidentInfoList = incidentInfoList;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListOrderIncidentResponse that = (ListOrderIncidentResponse) obj;
return Objects.equals(this.totalCount, that.totalCount)
&& Objects.equals(this.incidentInfoList, that.incidentInfoList);
}
@Override
public int hashCode() {
return Objects.hash(totalCount, incidentInfoList);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListOrderIncidentResponse {\n");
sb.append(" totalCount: ").append(toIndentedString(totalCount)).append("\n");
sb.append(" incidentInfoList: ").append(toIndentedString(incidentInfoList)).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 ");
}
}