
com.huaweicloud.sdk.functiongraph.v2.model.ListFunctionAsyncInvocationsResponse 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 ListFunctionAsyncInvocationsResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "invocations")
private List invocations = null;
public ListFunctionAsyncInvocationsResponse withInvocations(List invocations) {
this.invocations = invocations;
return this;
}
public ListFunctionAsyncInvocationsResponse addInvocationsItem(ListFunctionAsyncInvocationsResult invocationsItem) {
if (this.invocations == null) {
this.invocations = new ArrayList<>();
}
this.invocations.add(invocationsItem);
return this;
}
public ListFunctionAsyncInvocationsResponse withInvocations(
Consumer> invocationsSetter) {
if (this.invocations == null) {
this.invocations = new ArrayList<>();
}
invocationsSetter.accept(this.invocations);
return this;
}
/** 异步调用记录列表。
*
* @return invocations */
public List getInvocations() {
return invocations;
}
public void setInvocations(List invocations) {
this.invocations = invocations;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ListFunctionAsyncInvocationsResponse listFunctionAsyncInvocationsResponse =
(ListFunctionAsyncInvocationsResponse) o;
return Objects.equals(this.invocations, listFunctionAsyncInvocationsResponse.invocations);
}
@Override
public int hashCode() {
return Objects.hash(invocations);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListFunctionAsyncInvocationsResponse {\n");
sb.append(" invocations: ").append(toIndentedString(invocations)).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