com.huaweicloud.sdk.koomessage.v1.model.UpdateAimMsgAppRequest Maven / Gradle / Ivy
package com.huaweicloud.sdk.koomessage.v1.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 UpdateAimMsgAppRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "app_id")
private String appId;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "body")
private MsgAppRequest body;
public UpdateAimMsgAppRequest withAppId(String appId) {
this.appId = appId;
return this;
}
/**
* 应用ID。
* @return appId
*/
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public UpdateAimMsgAppRequest withBody(MsgAppRequest body) {
this.body = body;
return this;
}
public UpdateAimMsgAppRequest withBody(Consumer bodySetter) {
if (this.body == null) {
this.body = new MsgAppRequest();
bodySetter.accept(this.body);
}
return this;
}
/**
* Get body
* @return body
*/
public MsgAppRequest getBody() {
return body;
}
public void setBody(MsgAppRequest 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;
}
UpdateAimMsgAppRequest that = (UpdateAimMsgAppRequest) obj;
return Objects.equals(this.appId, that.appId) && Objects.equals(this.body, that.body);
}
@Override
public int hashCode() {
return Objects.hash(appId, body);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UpdateAimMsgAppRequest {\n");
sb.append(" appId: ").append(toIndentedString(appId)).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 ");
}
}