com.aliyun.iot20180120.models.QueryDeviceEventDataRequest 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 QueryDeviceEventDataRequest extends TeaModel {
@NameInMap("Asc")
public Integer asc;
@NameInMap("DeviceName")
public String deviceName;
@NameInMap("EndTime")
public Long endTime;
@NameInMap("EventType")
public String eventType;
@NameInMap("Identifier")
public String identifier;
@NameInMap("IotId")
public String iotId;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("PageSize")
public Integer pageSize;
@NameInMap("ProductKey")
public String productKey;
@NameInMap("StartTime")
public Long startTime;
public static QueryDeviceEventDataRequest build(java.util.Map map) throws Exception {
QueryDeviceEventDataRequest self = new QueryDeviceEventDataRequest();
return TeaModel.build(map, self);
}
public QueryDeviceEventDataRequest setAsc(Integer asc) {
this.asc = asc;
return this;
}
public Integer getAsc() {
return this.asc;
}
public QueryDeviceEventDataRequest setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryDeviceEventDataRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryDeviceEventDataRequest setEventType(String eventType) {
this.eventType = eventType;
return this;
}
public String getEventType() {
return this.eventType;
}
public QueryDeviceEventDataRequest setIdentifier(String identifier) {
this.identifier = identifier;
return this;
}
public String getIdentifier() {
return this.identifier;
}
public QueryDeviceEventDataRequest setIotId(String iotId) {
this.iotId = iotId;
return this;
}
public String getIotId() {
return this.iotId;
}
public QueryDeviceEventDataRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QueryDeviceEventDataRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryDeviceEventDataRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public QueryDeviceEventDataRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy