
com.huaweicloud.sdk.functiongraph.v2.model.ListFunctionVersionsResponse 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 ListFunctionVersionsResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "versions")
private List versions = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "next_marker")
private Long nextMarker;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "count")
private Long count;
public ListFunctionVersionsResponse withVersions(List versions) {
this.versions = versions;
return this;
}
public ListFunctionVersionsResponse addVersionsItem(ListFunctionVersionResult versionsItem) {
if (this.versions == null) {
this.versions = new ArrayList<>();
}
this.versions.add(versionsItem);
return this;
}
public ListFunctionVersionsResponse withVersions(Consumer> versionsSetter) {
if (this.versions == null) {
this.versions = new ArrayList<>();
}
versionsSetter.accept(this.versions);
return this;
}
/** 版本列表
*
* @return versions */
public List getVersions() {
return versions;
}
public void setVersions(List versions) {
this.versions = versions;
}
public ListFunctionVersionsResponse withNextMarker(Long nextMarker) {
this.nextMarker = nextMarker;
return this;
}
/** 下一次记录位置
*
* @return nextMarker */
public Long getNextMarker() {
return nextMarker;
}
public void setNextMarker(Long nextMarker) {
this.nextMarker = nextMarker;
}
public ListFunctionVersionsResponse withCount(Long count) {
this.count = count;
return this;
}
/** 函数版本总数
*
* @return count */
public Long getCount() {
return count;
}
public void setCount(Long count) {
this.count = count;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ListFunctionVersionsResponse listFunctionVersionsResponse = (ListFunctionVersionsResponse) o;
return Objects.equals(this.versions, listFunctionVersionsResponse.versions)
&& Objects.equals(this.nextMarker, listFunctionVersionsResponse.nextMarker)
&& Objects.equals(this.count, listFunctionVersionsResponse.count);
}
@Override
public int hashCode() {
return Objects.hash(versions, nextMarker, count);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListFunctionVersionsResponse {\n");
sb.append(" versions: ").append(toIndentedString(versions)).append("\n");
sb.append(" nextMarker: ").append(toIndentedString(nextMarker)).append("\n");
sb.append(" count: ").append(toIndentedString(count)).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