com.aliyun.sdk.service.iot20180120.models.QueryLicenseDeviceListRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-iot20180120 Show documentation
Show all versions of alibabacloud-iot20180120 Show documentation
Alibaba Cloud Iot (20180120) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.iot20180120.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QueryLicenseDeviceListRequest} extends {@link RequestModel}
*
* QueryLicenseDeviceListRequest
*/
public class QueryLicenseDeviceListRequest extends Request {
@Query
@NameInMap("EndTime")
private Long endTime;
@Query
@NameInMap("IotId")
private String iotId;
@Query
@NameInMap("IotInstanceId")
private String iotInstanceId;
@Query
@NameInMap("LicenseCode")
private String licenseCode;
@Query
@NameInMap("PageId")
private Integer pageId;
@Query
@NameInMap("PageSize")
private Integer pageSize;
@Query
@NameInMap("ProductKey")
private String productKey;
@Query
@NameInMap("StartTime")
private Long startTime;
private QueryLicenseDeviceListRequest(Builder builder) {
super(builder);
this.endTime = builder.endTime;
this.iotId = builder.iotId;
this.iotInstanceId = builder.iotInstanceId;
this.licenseCode = builder.licenseCode;
this.pageId = builder.pageId;
this.pageSize = builder.pageSize;
this.productKey = builder.productKey;
this.startTime = builder.startTime;
}
public static Builder builder() {
return new Builder();
}
public static QueryLicenseDeviceListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return iotId
*/
public String getIotId() {
return this.iotId;
}
/**
* @return iotInstanceId
*/
public String getIotInstanceId() {
return this.iotInstanceId;
}
/**
* @return licenseCode
*/
public String getLicenseCode() {
return this.licenseCode;
}
/**
* @return pageId
*/
public Integer getPageId() {
return this.pageId;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return productKey
*/
public String getProductKey() {
return this.productKey;
}
/**
* @return startTime
*/
public Long getStartTime() {
return this.startTime;
}
public static final class Builder extends Request.Builder {
private Long endTime;
private String iotId;
private String iotInstanceId;
private String licenseCode;
private Integer pageId;
private Integer pageSize;
private String productKey;
private Long startTime;
private Builder() {
super();
}
private Builder(QueryLicenseDeviceListRequest request) {
super(request);
this.endTime = request.endTime;
this.iotId = request.iotId;
this.iotInstanceId = request.iotInstanceId;
this.licenseCode = request.licenseCode;
this.pageId = request.pageId;
this.pageSize = request.pageSize;
this.productKey = request.productKey;
this.startTime = request.startTime;
}
/**
* EndTime.
*/
public Builder endTime(Long endTime) {
this.putQueryParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* IotId.
*/
public Builder iotId(String iotId) {
this.putQueryParameter("IotId", iotId);
this.iotId = iotId;
return this;
}
/**
* IotInstanceId.
*/
public Builder iotInstanceId(String iotInstanceId) {
this.putQueryParameter("IotInstanceId", iotInstanceId);
this.iotInstanceId = iotInstanceId;
return this;
}
/**
* LicenseCode.
*/
public Builder licenseCode(String licenseCode) {
this.putQueryParameter("LicenseCode", licenseCode);
this.licenseCode = licenseCode;
return this;
}
/**
* PageId.
*/
public Builder pageId(Integer pageId) {
this.putQueryParameter("PageId", pageId);
this.pageId = pageId;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* ProductKey.
*/
public Builder productKey(String productKey) {
this.putQueryParameter("ProductKey", productKey);
this.productKey = productKey;
return this;
}
/**
* StartTime.
*/
public Builder startTime(Long startTime) {
this.putQueryParameter("StartTime", startTime);
this.startTime = startTime;
return this;
}
@Override
public QueryLicenseDeviceListRequest build() {
return new QueryLicenseDeviceListRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy