com.aliyun.arms20190808.models.QueryAppMetadataResponseBody 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 QueryAppMetadataResponseBody extends TeaModel {
/**
* The HTTP status code returned for the request. Valid values:
*
* - 2XX: The request is successful.
* - 3XX: A redirection message is returned.
* - 4XX: The request is invalid.
* - 5XX: A server error occurs.
*
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The returned struct.
*
* example:
* {\"408d5533\": \"SELECT * FROM user_base_info\"}
*/
@NameInMap("Data")
public java.util.Map data;
/**
* The HTTP status code returned.
*
* example:
* 200
*/
@NameInMap("HttpStatusCode")
public Integer httpStatusCode;
/**
* The ID of the request.
*
* example:
* 51877BAC-330C-5845-BDFD-C7859AD33FB7
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the call was successful. Valid values:
*
* true
: The call was successful.
* false
: The call failed.
*
*
* example:
* True
*/
@NameInMap("Success")
public Boolean success;
public static QueryAppMetadataResponseBody build(java.util.Map map) throws Exception {
QueryAppMetadataResponseBody self = new QueryAppMetadataResponseBody();
return TeaModel.build(map, self);
}
public QueryAppMetadataResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public QueryAppMetadataResponseBody setData(java.util.Map data) {
this.data = data;
return this;
}
public java.util.Map getData() {
return this.data;
}
public QueryAppMetadataResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public QueryAppMetadataResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryAppMetadataResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy