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

com.aliyun.arms20190808.models.DeleteIntegrationsResponseBody Maven / Gradle / Ivy

Go to download

Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java

There is a newer version: 10.0.0
Show newest version
// 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