com.aliyun.iot20180120.models.QueryDeviceOriginalEventDataRequest 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 QueryDeviceOriginalEventDataRequest 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("NextPageToken")
public String nextPageToken;
@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;
public static QueryDeviceOriginalEventDataRequest build(java.util.Map map) throws Exception {
QueryDeviceOriginalEventDataRequest self = new QueryDeviceOriginalEventDataRequest();
return TeaModel.build(map, self);
}
public QueryDeviceOriginalEventDataRequest setApiProduct(String apiProduct) {
this.apiProduct = apiProduct;
return this;
}
public String getApiProduct() {
return this.apiProduct;
}
public QueryDeviceOriginalEventDataRequest setApiRevision(String apiRevision) {
this.apiRevision = apiRevision;
return this;
}
public String getApiRevision() {
return this.apiRevision;
}
public QueryDeviceOriginalEventDataRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QueryDeviceOriginalEventDataRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryDeviceOriginalEventDataRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public QueryDeviceOriginalEventDataRequest setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryDeviceOriginalEventDataRequest setNextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
return this;
}
public String getNextPageToken() {
return this.nextPageToken;
}
public QueryDeviceOriginalEventDataRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryDeviceOriginalEventDataRequest setIdentifier(String identifier) {
this.identifier = identifier;
return this;
}
public String getIdentifier() {
return this.identifier;
}
public QueryDeviceOriginalEventDataRequest setAsc(Integer asc) {
this.asc = asc;
return this;
}
public Integer getAsc() {
return this.asc;
}
public QueryDeviceOriginalEventDataRequest setIotId(String iotId) {
this.iotId = iotId;
return this;
}
public String getIotId() {
return this.iotId;
}
public QueryDeviceOriginalEventDataRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy