
com.huaweicloud.sdk.functiongraph.v2.model.UpdateEventRequestBody 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.Objects;
/** 更新测试事件请求体。 */
public class UpdateEventRequestBody {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "content")
private String content;
public UpdateEventRequestBody withContent(String content) {
this.content = content;
return this;
}
/** 测试事件content。
*
* @return content */
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UpdateEventRequestBody updateEventRequestBody = (UpdateEventRequestBody) o;
return Objects.equals(this.content, updateEventRequestBody.content);
}
@Override
public int hashCode() {
return Objects.hash(content);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateEventRequestBody {\n");
sb.append(" content: ").append(toIndentedString(content)).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