com.aliyun.sdk.service.iot20180120.models.QuerySoundCodeListRequest 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 QuerySoundCodeListRequest} extends {@link RequestModel}
*
* QuerySoundCodeListRequest
*/
public class QuerySoundCodeListRequest extends Request {
@Body
@NameInMap("IotInstanceId")
private String iotInstanceId;
@Body
@NameInMap("PageId")
@Validation(maximum = 10000, minimum = 1)
private Integer pageId;
@Body
@NameInMap("PageSize")
@Validation(maximum = 50, minimum = 1)
private Integer pageSize;
private QuerySoundCodeListRequest(Builder builder) {
super(builder);
this.iotInstanceId = builder.iotInstanceId;
this.pageId = builder.pageId;
this.pageSize = builder.pageSize;
}
public static Builder builder() {
return new Builder();
}
public static QuerySoundCodeListRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return iotInstanceId
*/
public String getIotInstanceId() {
return this.iotInstanceId;
}
/**
* @return pageId
*/
public Integer getPageId() {
return this.pageId;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
public static final class Builder extends Request.Builder {
private String iotInstanceId;
private Integer pageId;
private Integer pageSize;
private Builder() {
super();
}
private Builder(QuerySoundCodeListRequest request) {
super(request);
this.iotInstanceId = request.iotInstanceId;
this.pageId = request.pageId;
this.pageSize = request.pageSize;
}
/**
* IotInstanceId.
*/
public Builder iotInstanceId(String iotInstanceId) {
this.putBodyParameter("IotInstanceId", iotInstanceId);
this.iotInstanceId = iotInstanceId;
return this;
}
/**
* PageId.
*/
public Builder pageId(Integer pageId) {
this.putBodyParameter("PageId", pageId);
this.pageId = pageId;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
@Override
public QuerySoundCodeListRequest build() {
return new QuerySoundCodeListRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy