com.aliyun.arms20190808.models.DeleteIntegrationsResponseBody 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 DeleteIntegrationsResponseBody extends TeaModel {
/**
* Indicates whether the alert integration is deleted. Valid values:
*
* - true
* - false
*
*
* example:
* true
*/
@NameInMap("IsSuccess")
public Boolean isSuccess;
/**
* The ID of the request.
*
* example:
* 34ED024E-9E31-434A-9E4E-D9D15C3****
*/
@NameInMap("RequestId")
public String requestId;
public static DeleteIntegrationsResponseBody build(java.util.Map map) throws Exception {
DeleteIntegrationsResponseBody self = new DeleteIntegrationsResponseBody();
return TeaModel.build(map, self);
}
public DeleteIntegrationsResponseBody setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
return this;
}
public Boolean getIsSuccess() {
return this.isSuccess;
}
public DeleteIntegrationsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy