All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.bot.models.QueryIotbasicSnResponse Maven / Gradle / Ivy

There is a newer version: 1.11.48
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;

import com.aliyun.tea.*;

public class QueryIotbasicSnResponse extends TeaModel {
    // 请求唯一ID,用于链路跟踪和问题排查
    @NameInMap("req_msg_id")
    public String reqMsgId;

    // 结果码,一般OK表示调用成功
    @NameInMap("result_code")
    public String resultCode;

    // 异常信息的文本描述
    @NameInMap("result_msg")
    public String resultMsg;

    // 当前页号。
    // 
    @NameInMap("current_page")
    public Long currentPage;

    // 总页数
    // 
    @NameInMap("page_count")
    public Long pageCount;

    // 每页显示条数
    // 
    @NameInMap("page_size")
    public Long pageSize;

    // 总记录数
    // 
    @NameInMap("total")
    public Long total;

    // sn集合
    @NameInMap("sn_list")
    public java.util.List snList;

    public static QueryIotbasicSnResponse build(java.util.Map map) throws Exception {
        QueryIotbasicSnResponse self = new QueryIotbasicSnResponse();
        return TeaModel.build(map, self);
    }

    public QueryIotbasicSnResponse setReqMsgId(String reqMsgId) {
        this.reqMsgId = reqMsgId;
        return this;
    }
    public String getReqMsgId() {
        return this.reqMsgId;
    }

    public QueryIotbasicSnResponse setResultCode(String resultCode) {
        this.resultCode = resultCode;
        return this;
    }
    public String getResultCode() {
        return this.resultCode;
    }

    public QueryIotbasicSnResponse setResultMsg(String resultMsg) {
        this.resultMsg = resultMsg;
        return this;
    }
    public String getResultMsg() {
        return this.resultMsg;
    }

    public QueryIotbasicSnResponse setCurrentPage(Long currentPage) {
        this.currentPage = currentPage;
        return this;
    }
    public Long getCurrentPage() {
        return this.currentPage;
    }

    public QueryIotbasicSnResponse setPageCount(Long pageCount) {
        this.pageCount = pageCount;
        return this;
    }
    public Long getPageCount() {
        return this.pageCount;
    }

    public QueryIotbasicSnResponse setPageSize(Long pageSize) {
        this.pageSize = pageSize;
        return this;
    }
    public Long getPageSize() {
        return this.pageSize;
    }

    public QueryIotbasicSnResponse setTotal(Long total) {
        this.total = total;
        return this;
    }
    public Long getTotal() {
        return this.total;
    }

    public QueryIotbasicSnResponse setSnList(java.util.List snList) {
        this.snList = snList;
        return this;
    }
    public java.util.List getSnList() {
        return this.snList;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy