com.aliyun.arms20190808.models.UpdateAlertContactGroupResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class UpdateAlertContactGroupResponseBody extends TeaModel {
/**
* Indicates whether the call was successful.
*
* true
: The call was successful.
* false
: The call failed.
*
*
* example:
* true
*/
@NameInMap("IsSuccess")
public Boolean isSuccess;
/**
* The ID of the request.
*
* example:
* 9319A57D-2D9E-472A-B69B-CF3CD16D****
*/
@NameInMap("RequestId")
public String requestId;
public static UpdateAlertContactGroupResponseBody build(java.util.Map map) throws Exception {
UpdateAlertContactGroupResponseBody self = new UpdateAlertContactGroupResponseBody();
return TeaModel.build(map, self);
}
public UpdateAlertContactGroupResponseBody setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
return this;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public UpdateAlertContactGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy