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

com.aliyun.dingtalkdiot_1_0.models.QueryDeviceRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdiot_1_0.models;

import com.aliyun.tea.*;

public class QueryDeviceRequest extends TeaModel {
    // 钉钉组织id
    @NameInMap("corpId")
    public String corpId;

    // 指定显示返回结果中的第几页的内容。默认值是 1
    @NameInMap("pageNumber")
    public Long pageNumber;

    // 指定返回结果中每页显示的记录数量,最大值是50。默认值是10
    @NameInMap("pageSize")
    public Long pageSize;

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

    public QueryDeviceRequest setCorpId(String corpId) {
        this.corpId = corpId;
        return this;
    }
    public String getCorpId() {
        return this.corpId;
    }

    public QueryDeviceRequest setPageNumber(Long pageNumber) {
        this.pageNumber = pageNumber;
        return this;
    }
    public Long getPageNumber() {
        return this.pageNumber;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy