com.huaweicloud.sdk.csms.v1.model.ListSecretEventsResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.csms.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 ListSecretEventsResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "events")
private List events = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "page_info")
private PageInfo pageInfo;
public ListSecretEventsResponse withEvents(List events) {
this.events = events;
return this;
}
public ListSecretEventsResponse addEventsItem(Event eventsItem) {
if (this.events == null) {
this.events = new ArrayList<>();
}
this.events.add(eventsItem);
return this;
}
public ListSecretEventsResponse withEvents(Consumer> eventsSetter) {
if (this.events == null) {
this.events = new ArrayList<>();
}
eventsSetter.accept(this.events);
return this;
}
/**
* 事件详情列表。
* @return events
*/
public List getEvents() {
return events;
}
public void setEvents(List events) {
this.events = events;
}
public ListSecretEventsResponse withPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
return this;
}
public ListSecretEventsResponse withPageInfo(Consumer pageInfoSetter) {
if (this.pageInfo == null) {
this.pageInfo = new PageInfo();
pageInfoSetter.accept(this.pageInfo);
}
return this;
}
/**
* Get pageInfo
* @return pageInfo
*/
public PageInfo getPageInfo() {
return pageInfo;
}
public void setPageInfo(PageInfo pageInfo) {
this.pageInfo = pageInfo;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListSecretEventsResponse that = (ListSecretEventsResponse) obj;
return Objects.equals(this.events, that.events) && Objects.equals(this.pageInfo, that.pageInfo);
}
@Override
public int hashCode() {
return Objects.hash(events, pageInfo);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListSecretEventsResponse {\n");
sb.append(" events: ").append(toIndentedString(events)).append("\n");
sb.append(" pageInfo: ").append(toIndentedString(pageInfo)).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 ");
}
}