com.antgroup.antchain.openapi.deps.models.QueryPlanResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class QueryPlanResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// 列表
@NameInMap("list")
public java.util.List list;
// page_no
@NameInMap("page_no")
public Long pageNo;
// page_size
@NameInMap("page_size")
public Long pageSize;
// total_size
@NameInMap("total_size")
public Long totalSize;
public static QueryPlanResponse build(java.util.Map map) throws Exception {
QueryPlanResponse self = new QueryPlanResponse();
return TeaModel.build(map, self);
}
public QueryPlanResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public QueryPlanResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public QueryPlanResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public QueryPlanResponse setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public QueryPlanResponse setPageNo(Long pageNo) {
this.pageNo = pageNo;
return this;
}
public Long getPageNo() {
return this.pageNo;
}
public QueryPlanResponse setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryPlanResponse setTotalSize(Long totalSize) {
this.totalSize = totalSize;
return this;
}
public Long getTotalSize() {
return this.totalSize;
}
}