com.aliyun.sdk.service.iot20180120.models.QueryEdgeInstanceChannelRequest 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 QueryEdgeInstanceChannelRequest} extends {@link RequestModel}
*
* QueryEdgeInstanceChannelRequest
*/
public class QueryEdgeInstanceChannelRequest extends Request {
@Query
@NameInMap("ChannelName")
private String channelName;
@Query
@NameInMap("CurrentPage")
@Validation(required = true)
private Integer currentPage;
@Query
@NameInMap("DriverId")
@Validation(required = true)
private String driverId;
@Query
@NameInMap("InstanceId")
@Validation(required = true)
private String instanceId;
@Query
@NameInMap("IotInstanceId")
private String iotInstanceId;
@Query
@NameInMap("PageSize")
@Validation(required = true)
private Integer pageSize;
private QueryEdgeInstanceChannelRequest(Builder builder) {
super(builder);
this.channelName = builder.channelName;
this.currentPage = builder.currentPage;
this.driverId = builder.driverId;
this.instanceId = builder.instanceId;
this.iotInstanceId = builder.iotInstanceId;
this.pageSize = builder.pageSize;
}
public static Builder builder() {
return new Builder();
}
public static QueryEdgeInstanceChannelRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return channelName
*/
public String getChannelName() {
return this.channelName;
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return driverId
*/
public String getDriverId() {
return this.driverId;
}
/**
* @return instanceId
*/
public String getInstanceId() {
return this.instanceId;
}
/**
* @return iotInstanceId
*/
public String getIotInstanceId() {
return this.iotInstanceId;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
public static final class Builder extends Request.Builder {
private String channelName;
private Integer currentPage;
private String driverId;
private String instanceId;
private String iotInstanceId;
private Integer pageSize;
private Builder() {
super();
}
private Builder(QueryEdgeInstanceChannelRequest request) {
super(request);
this.channelName = request.channelName;
this.currentPage = request.currentPage;
this.driverId = request.driverId;
this.instanceId = request.instanceId;
this.iotInstanceId = request.iotInstanceId;
this.pageSize = request.pageSize;
}
/**
* ChannelName.
*/
public Builder channelName(String channelName) {
this.putQueryParameter("ChannelName", channelName);
this.channelName = channelName;
return this;
}
/**
* CurrentPage.
*/
public Builder currentPage(Integer currentPage) {
this.putQueryParameter("CurrentPage", currentPage);
this.currentPage = currentPage;
return this;
}
/**
* DriverId.
*/
public Builder driverId(String driverId) {
this.putQueryParameter("DriverId", driverId);
this.driverId = driverId;
return this;
}
/**
* InstanceId.
*/
public Builder instanceId(String instanceId) {
this.putQueryParameter("InstanceId", instanceId);
this.instanceId = instanceId;
return this;
}
/**
* IotInstanceId.
*/
public Builder iotInstanceId(String iotInstanceId) {
this.putQueryParameter("IotInstanceId", iotInstanceId);
this.iotInstanceId = iotInstanceId;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putQueryParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
@Override
public QueryEdgeInstanceChannelRequest build() {
return new QueryEdgeInstanceChannelRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy