com.huaweicloud.sdk.csms.v1.model.ShowSecretEventResponse 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.Objects;
import java.util.function.Consumer;
/**
* Response Object
*/
public class ShowSecretEventResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "event")
private Event event;
public ShowSecretEventResponse withEvent(Event event) {
this.event = event;
return this;
}
public ShowSecretEventResponse withEvent(Consumer eventSetter) {
if (this.event == null) {
this.event = new Event();
eventSetter.accept(this.event);
}
return this;
}
/**
* Get event
* @return event
*/
public Event getEvent() {
return event;
}
public void setEvent(Event event) {
this.event = event;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ShowSecretEventResponse that = (ShowSecretEventResponse) obj;
return Objects.equals(this.event, that.event);
}
@Override
public int hashCode() {
return Objects.hash(event);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShowSecretEventResponse {\n");
sb.append(" event: ").append(toIndentedString(event)).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 ");
}
}