com.aliyun.sdk.service.cs20151215.models.StopAlertResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cs20151215 Show documentation
Show all versions of alibabacloud-cs20151215 Show documentation
Alibaba Cloud CS (20151215) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopAlertResponseBody} extends {@link TeaModel}
*
* StopAlertResponseBody
*/
public class StopAlertResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("msg")
private String msg;
@com.aliyun.core.annotation.NameInMap("status")
private Boolean status;
private StopAlertResponseBody(Builder builder) {
this.msg = builder.msg;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static StopAlertResponseBody create() {
return builder().build();
}
/**
* @return msg
*/
public String getMsg() {
return this.msg;
}
/**
* @return status
*/
public Boolean getStatus() {
return this.status;
}
public static final class Builder {
private String msg;
private Boolean status;
/**
* The error message returned if the call fails.
*/
public Builder msg(String msg) {
this.msg = msg;
return this;
}
/**
* The operation result. Valid values:
*
*
* * True: The operation is successful.
* * False: The operation failed.
*/
public Builder status(Boolean status) {
this.status = status;
return this;
}
public StopAlertResponseBody build() {
return new StopAlertResponseBody(this);
}
}
}