com.antgroup.antchain.openapi.acm.models.QueryOperatorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-acm Show documentation
Show all versions of openapi-acm Show documentation
Ant Chain acm SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.acm.models;
import com.aliyun.tea.*;
public class QueryOperatorResponse extends TeaModel {
// 请求唯一ID,用于链路跟踪和问题排查
@NameInMap("req_msg_id")
public String reqMsgId;
// 结果码,一般OK表示调用成功
@NameInMap("result_code")
public String resultCode;
// 异常信息的文本描述
@NameInMap("result_msg")
public String resultMsg;
// 操作员列表
@NameInMap("operators")
@Validation(required = true)
public java.util.List operators;
// 传入的页码, 如果没有传入, 则取默认值1
@NameInMap("page_num")
@Validation(required = true)
public Long pageNum;
// 传入的页大小, 如果没有传入, 则取默认值10
@NameInMap("page_size")
@Validation(required = true)
public Long pageSize;
// 查询结果的总条目数量
@NameInMap("total_count")
@Validation(required = true)
public Long totalCount;
public static QueryOperatorResponse build(java.util.Map map) throws Exception {
QueryOperatorResponse self = new QueryOperatorResponse();
return TeaModel.build(map, self);
}
public QueryOperatorResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public QueryOperatorResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public QueryOperatorResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public QueryOperatorResponse setOperators(java.util.List operators) {
this.operators = operators;
return this;
}
public java.util.List getOperators() {
return this.operators;
}
public QueryOperatorResponse setPageNum(Long pageNum) {
this.pageNum = pageNum;
return this;
}
public Long getPageNum() {
return this.pageNum;
}
public QueryOperatorResponse setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryOperatorResponse setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
}