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