com.aliyun.iot20180120.models.QueryEdgeDriverRequest 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 QueryEdgeDriverRequest extends TeaModel {
@NameInMap("ApiProduct")
public String apiProduct;
@NameInMap("ApiRevision")
public String apiRevision;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("PageSize")
public Integer pageSize;
@NameInMap("CurrentPage")
public Integer currentPage;
@NameInMap("Type")
public Integer type;
@NameInMap("DriverName")
public String driverName;
public static QueryEdgeDriverRequest build(java.util.Map map) throws Exception {
QueryEdgeDriverRequest self = new QueryEdgeDriverRequest();
return TeaModel.build(map, self);
}
public QueryEdgeDriverRequest setApiProduct(String apiProduct) {
this.apiProduct = apiProduct;
return this;
}
public String getApiProduct() {
return this.apiProduct;
}
public QueryEdgeDriverRequest setApiRevision(String apiRevision) {
this.apiRevision = apiRevision;
return this;
}
public String getApiRevision() {
return this.apiRevision;
}
public QueryEdgeDriverRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QueryEdgeDriverRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryEdgeDriverRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public QueryEdgeDriverRequest setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
public QueryEdgeDriverRequest setDriverName(String driverName) {
this.driverName = driverName;
return this;
}
public String getDriverName() {
return this.driverName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy