com.aliyun.iot20180120.models.QueryDevicePropertyDataRequest 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 QueryDevicePropertyDataRequest 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("DeviceName")
public String deviceName;
@NameInMap("StartTime")
public Long startTime;
@NameInMap("Identifier")
public String identifier;
@NameInMap("Asc")
public Integer asc;
@NameInMap("IotId")
public String iotId;
@NameInMap("EndTime")
public Long endTime;
@NameInMap("RealTenantId")
public String realTenantId;
@NameInMap("RealTripartiteKey")
public String realTripartiteKey;
public static QueryDevicePropertyDataRequest build(java.util.Map map) throws Exception {
QueryDevicePropertyDataRequest self = new QueryDevicePropertyDataRequest();
return TeaModel.build(map, self);
}
public QueryDevicePropertyDataRequest setApiProduct(String apiProduct) {
this.apiProduct = apiProduct;
return this;
}
public String getApiProduct() {
return this.apiProduct;
}
public QueryDevicePropertyDataRequest setApiRevision(String apiRevision) {
this.apiRevision = apiRevision;
return this;
}
public String getApiRevision() {
return this.apiRevision;
}
public QueryDevicePropertyDataRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QueryDevicePropertyDataRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryDevicePropertyDataRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public QueryDevicePropertyDataRequest setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryDevicePropertyDataRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryDevicePropertyDataRequest setIdentifier(String identifier) {
this.identifier = identifier;
return this;
}
public String getIdentifier() {
return this.identifier;
}
public QueryDevicePropertyDataRequest setAsc(Integer asc) {
this.asc = asc;
return this;
}
public Integer getAsc() {
return this.asc;
}
public QueryDevicePropertyDataRequest setIotId(String iotId) {
this.iotId = iotId;
return this;
}
public String getIotId() {
return this.iotId;
}
public QueryDevicePropertyDataRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryDevicePropertyDataRequest setRealTenantId(String realTenantId) {
this.realTenantId = realTenantId;
return this;
}
public String getRealTenantId() {
return this.realTenantId;
}
public QueryDevicePropertyDataRequest setRealTripartiteKey(String realTripartiteKey) {
this.realTripartiteKey = realTripartiteKey;
return this;
}
public String getRealTripartiteKey() {
return this.realTripartiteKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy