
com.huaweicloud.sdk.functiongraph.v2.model.ListVersionAliasesResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.functiongraph.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 ListVersionAliasesResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "body")
private List body = null;
public ListVersionAliasesResponse withBody(List body) {
this.body = body;
return this;
}
public ListVersionAliasesResponse addBodyItem(ListVersionAliasResult bodyItem) {
if (this.body == null) {
this.body = new ArrayList<>();
}
this.body.add(bodyItem);
return this;
}
public ListVersionAliasesResponse 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 o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ListVersionAliasesResponse listVersionAliasesResponse = (ListVersionAliasesResponse) o;
return Objects.equals(this.body, listVersionAliasesResponse.body);
}
@Override
public int hashCode() {
return Objects.hash(body);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListVersionAliasesResponse {\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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy