com.aliyun.iot20180120.models.QueryProductListRequest 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 QueryProductListRequest extends TeaModel {
@NameInMap("AliyunCommodityCode")
public String aliyunCommodityCode;
@NameInMap("CurrentPage")
public Integer currentPage;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("PageSize")
public Integer pageSize;
@NameInMap("ResourceGroupId")
public String resourceGroupId;
public static QueryProductListRequest build(java.util.Map map) throws Exception {
QueryProductListRequest self = new QueryProductListRequest();
return TeaModel.build(map, self);
}
public QueryProductListRequest setAliyunCommodityCode(String aliyunCommodityCode) {
this.aliyunCommodityCode = aliyunCommodityCode;
return this;
}
public String getAliyunCommodityCode() {
return this.aliyunCommodityCode;
}
public QueryProductListRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public QueryProductListRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QueryProductListRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryProductListRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy