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

com.aliyun.arms20190808.models.UpdateAlertContactGroupResponseBody 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 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