
com.huaweicloud.sdk.meeting.v1.model.SetQosThresholdResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.meeting.v1.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaweicloud.sdk.core.SdkResponse;
import java.util.Objects;
/** Response Object */
public class SetQosThresholdResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "code")
private String code;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "message")
private String message;
public SetQosThresholdResponse withCode(String code) {
this.code = code;
return this;
}
/** 返回码
*
* @return code */
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public SetQosThresholdResponse withMessage(String message) {
this.message = message;
return this;
}
/** 返回信息
*
* @return message */
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SetQosThresholdResponse setQosThresholdResponse = (SetQosThresholdResponse) o;
return Objects.equals(this.code, setQosThresholdResponse.code)
&& Objects.equals(this.message, setQosThresholdResponse.message);
}
@Override
public int hashCode() {
return Objects.hash(code, message);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SetQosThresholdResponse {\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" message: ").append(toIndentedString(message)).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