All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.iot20180120.models.QueryEdgeInstanceDeviceByDriverRequest Maven / Gradle / Ivy

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 QueryEdgeInstanceDeviceByDriverRequest} extends {@link RequestModel}
 *
 * 

QueryEdgeInstanceDeviceByDriverRequest

*/ public class QueryEdgeInstanceDeviceByDriverRequest extends Request { @Query @NameInMap("ChannelId") private String channelId; @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 QueryEdgeInstanceDeviceByDriverRequest(Builder builder) { super(builder); this.channelId = builder.channelId; 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 QueryEdgeInstanceDeviceByDriverRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @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 channelId; private Integer currentPage; private String driverId; private String instanceId; private String iotInstanceId; private Integer pageSize; private Builder() { super(); } private Builder(QueryEdgeInstanceDeviceByDriverRequest request) { super(request); this.channelId = request.channelId; this.currentPage = request.currentPage; this.driverId = request.driverId; this.instanceId = request.instanceId; this.iotInstanceId = request.iotInstanceId; this.pageSize = request.pageSize; } /** * ChannelId. */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; 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 QueryEdgeInstanceDeviceByDriverRequest build() { return new QueryEdgeInstanceDeviceByDriverRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy