All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.cs20151215.models.StopAlertResponseBody Maven / Gradle / Ivy

There is a newer version: 2.0.29
Show newest version
// 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); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy