com.aliyun.iot20180120.models.QueryDeviceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class QueryDeviceRequest extends TeaModel {
@NameInMap("ApiProduct")
public String apiProduct;
@NameInMap("ApiRevision")
public String apiRevision;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("PageSize")
public Integer pageSize;
@NameInMap("ProductKey")
public String productKey;
@NameInMap("CurrentPage")
public Integer currentPage;
public static QueryDeviceRequest build(java.util.Map map) throws Exception {
QueryDeviceRequest self = new QueryDeviceRequest();
return TeaModel.build(map, self);
}
public QueryDeviceRequest setApiProduct(String apiProduct) {
this.apiProduct = apiProduct;
return this;
}
public String getApiProduct() {
return this.apiProduct;
}
public QueryDeviceRequest setApiRevision(String apiRevision) {
this.apiRevision = apiRevision;
return this;
}
public String getApiRevision() {
return this.apiRevision;
}
public QueryDeviceRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QueryDeviceRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryDeviceRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public QueryDeviceRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy