![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.quickbi_public20220101.models.QueryEmbeddedInfoResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.quickbi_public20220101.models;
import com.aliyun.tea.*;
public class QueryEmbeddedInfoResponseBody extends TeaModel {
/**
* example:
* D787E1A3-A93C-424A-B626-C2B05DF8D885
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public QueryEmbeddedInfoResponseBodyResult result;
/**
* Indicates whether the request is successful. Valid values:
*
* - true: The request was successful.
* - false: The request failed.
*
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static QueryEmbeddedInfoResponseBody build(java.util.Map map) throws Exception {
QueryEmbeddedInfoResponseBody self = new QueryEmbeddedInfoResponseBody();
return TeaModel.build(map, self);
}
public QueryEmbeddedInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryEmbeddedInfoResponseBody setResult(QueryEmbeddedInfoResponseBodyResult result) {
this.result = result;
return this;
}
public QueryEmbeddedInfoResponseBodyResult getResult() {
return this.result;
}
public QueryEmbeddedInfoResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class QueryEmbeddedInfoResponseBodyResultDetail extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("DashboardOfflineQuery")
public Integer dashboardOfflineQuery;
/**
* example:
* 1
*/
@NameInMap("Page")
public Integer page;
/**
* example:
* 1
*/
@NameInMap("Report")
public Integer report;
public static QueryEmbeddedInfoResponseBodyResultDetail build(java.util.Map map) throws Exception {
QueryEmbeddedInfoResponseBodyResultDetail self = new QueryEmbeddedInfoResponseBodyResultDetail();
return TeaModel.build(map, self);
}
public QueryEmbeddedInfoResponseBodyResultDetail setDashboardOfflineQuery(Integer dashboardOfflineQuery) {
this.dashboardOfflineQuery = dashboardOfflineQuery;
return this;
}
public Integer getDashboardOfflineQuery() {
return this.dashboardOfflineQuery;
}
public QueryEmbeddedInfoResponseBodyResultDetail setPage(Integer page) {
this.page = page;
return this;
}
public Integer getPage() {
return this.page;
}
public QueryEmbeddedInfoResponseBodyResultDetail setReport(Integer report) {
this.report = report;
return this;
}
public Integer getReport() {
return this.report;
}
}
public static class QueryEmbeddedInfoResponseBodyResult extends TeaModel {
@NameInMap("Detail")
public QueryEmbeddedInfoResponseBodyResultDetail detail;
/**
* example:
* 3
*/
@NameInMap("EmbeddedCount")
public Integer embeddedCount;
/**
* example:
* 100
*/
@NameInMap("MaxCount")
public Integer maxCount;
public static QueryEmbeddedInfoResponseBodyResult build(java.util.Map map) throws Exception {
QueryEmbeddedInfoResponseBodyResult self = new QueryEmbeddedInfoResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryEmbeddedInfoResponseBodyResult setDetail(QueryEmbeddedInfoResponseBodyResultDetail detail) {
this.detail = detail;
return this;
}
public QueryEmbeddedInfoResponseBodyResultDetail getDetail() {
return this.detail;
}
public QueryEmbeddedInfoResponseBodyResult setEmbeddedCount(Integer embeddedCount) {
this.embeddedCount = embeddedCount;
return this;
}
public Integer getEmbeddedCount() {
return this.embeddedCount;
}
public QueryEmbeddedInfoResponseBodyResult setMaxCount(Integer maxCount) {
this.maxCount = maxCount;
return this;
}
public Integer getMaxCount() {
return this.maxCount;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy