com.huaweicloud.sdk.cse.v1.model.ListGovernancePolicysResponse Maven / Gradle / Ivy
The newest version!
package com.huaweicloud.sdk.cse.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 ListGovernancePolicysResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "body")
private List body = null;
public ListGovernancePolicysResponse withBody(List body) {
this.body = body;
return this;
}
public ListGovernancePolicysResponse addBodyItem(GovPolicyDetail bodyItem) {
if (this.body == null) {
this.body = new ArrayList<>();
}
this.body.add(bodyItem);
return this;
}
public ListGovernancePolicysResponse withBody(Consumer> bodySetter) {
if (this.body == null) {
this.body = new ArrayList<>();
}
bodySetter.accept(this.body);
return this;
}
/**
* 查询治理策略列表响应结构体。
* @return body
*/
public List getBody() {
return body;
}
public void setBody(List body) {
this.body = body;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListGovernancePolicysResponse that = (ListGovernancePolicysResponse) obj;
return Objects.equals(this.body, that.body);
}
@Override
public int hashCode() {
return Objects.hash(body);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListGovernancePolicysResponse {\n");
sb.append(" body: ").append(toIndentedString(body)).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 ");
}
}