
com.huaweicloud.sdk.functiongraph.v2.model.ListQuotasResult Maven / Gradle / Ivy
package com.huaweicloud.sdk.functiongraph.v2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/** 配额信息 */
public class ListQuotasResult {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "resources")
private List resources = null;
public ListQuotasResult withResources(List resources) {
this.resources = resources;
return this;
}
public ListQuotasResult addResourcesItem(Resources resourcesItem) {
if (this.resources == null) {
this.resources = new ArrayList<>();
}
this.resources.add(resourcesItem);
return this;
}
public ListQuotasResult withResources(Consumer> resourcesSetter) {
if (this.resources == null) {
this.resources = new ArrayList<>();
}
resourcesSetter.accept(this.resources);
return this;
}
/** 配额列表
*
* @return resources */
public List getResources() {
return resources;
}
public void setResources(List resources) {
this.resources = resources;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ListQuotasResult listQuotasResult = (ListQuotasResult) o;
return Objects.equals(this.resources, listQuotasResult.resources);
}
@Override
public int hashCode() {
return Objects.hash(resources);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListQuotasResult {\n");
sb.append(" resources: ").append(toIndentedString(resources)).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