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

com.aliyun.arms20190808.models.CheckServiceStatusResponseBody 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 CheckServiceStatusResponseBody extends TeaModel {
    /**
     * 

Indicates whether the request was successful. Valid values:

*
    *
  • true.
  • *
  • false.
  • *
* * example: *

true

*/ @NameInMap("Data") public String data; /** *

The request ID. You can use the ID to find logs and troubleshoot issues.

* * example: *

5710C923-AD09-4293-9E11-DCBE3D15F8D4

*/ @NameInMap("RequestId") public String requestId; public static CheckServiceStatusResponseBody build(java.util.Map map) throws Exception { CheckServiceStatusResponseBody self = new CheckServiceStatusResponseBody(); return TeaModel.build(map, self); } public CheckServiceStatusResponseBody setData(String data) { this.data = data; return this; } public String getData() { return this.data; } public CheckServiceStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy