com.huaweicloud.sdk.aom.v2.model.ListLogItemsRequest Maven / Gradle / Ivy
package com.huaweicloud.sdk.aom.v2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Request Object
*/
public class ListLogItemsRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "type")
private String type;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "body")
private QueryBodyParam body;
public ListLogItemsRequest withType(String type) {
this.type = type;
return this;
}
/**
* 日志接口调用方式,当值为\"querylogs\"时接口功能为查询日志内容。
* @return type
*/
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public ListLogItemsRequest withBody(QueryBodyParam body) {
this.body = body;
return this;
}
public ListLogItemsRequest withBody(Consumer bodySetter) {
if (this.body == null) {
this.body = new QueryBodyParam();
bodySetter.accept(this.body);
}
return this;
}
/**
* Get body
* @return body
*/
public QueryBodyParam getBody() {
return body;
}
public void setBody(QueryBodyParam body) {
this.body = body;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListLogItemsRequest that = (ListLogItemsRequest) obj;
return Objects.equals(this.type, that.type) && Objects.equals(this.body, that.body);
}
@Override
public int hashCode() {
return Objects.hash(type, body);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListLogItemsRequest {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" body: ").append(toIndentedString(body)).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 ");
}
}