com.aliyun.sdk.service.iot20180120.models.PageQuerySharedSpeechOpenRequest 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 PageQuerySharedSpeechOpenRequest} extends {@link RequestModel}
*
* PageQuerySharedSpeechOpenRequest
*/
public class PageQuerySharedSpeechOpenRequest extends Request {
@Body
@NameInMap("DeviceName")
private String deviceName;
@Body
@NameInMap("IotId")
private String iotId;
@Body
@NameInMap("IotInstanceId")
private String iotInstanceId;
@Body
@NameInMap("PageId")
private Integer pageId;
@Body
@NameInMap("PageSize")
@Validation(maximum = 100, minimum = 1)
private Integer pageSize;
@Body
@NameInMap("ProductKey")
private String productKey;
@Body
@NameInMap("ShareTaskCode")
private String shareTaskCode;
@Body
@NameInMap("Status")
private Integer status;
private PageQuerySharedSpeechOpenRequest(Builder builder) {
super(builder);
this.deviceName = builder.deviceName;
this.iotId = builder.iotId;
this.iotInstanceId = builder.iotInstanceId;
this.pageId = builder.pageId;
this.pageSize = builder.pageSize;
this.productKey = builder.productKey;
this.shareTaskCode = builder.shareTaskCode;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static PageQuerySharedSpeechOpenRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return deviceName
*/
public String getDeviceName() {
return this.deviceName;
}
/**
* @return iotId
*/
public String getIotId() {
return this.iotId;
}
/**
* @return iotInstanceId
*/
public String getIotInstanceId() {
return this.iotInstanceId;
}
/**
* @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 shareTaskCode
*/
public String getShareTaskCode() {
return this.shareTaskCode;
}
/**
* @return status
*/
public Integer getStatus() {
return this.status;
}
public static final class Builder extends Request.Builder {
private String deviceName;
private String iotId;
private String iotInstanceId;
private Integer pageId;
private Integer pageSize;
private String productKey;
private String shareTaskCode;
private Integer status;
private Builder() {
super();
}
private Builder(PageQuerySharedSpeechOpenRequest request) {
super(request);
this.deviceName = request.deviceName;
this.iotId = request.iotId;
this.iotInstanceId = request.iotInstanceId;
this.pageId = request.pageId;
this.pageSize = request.pageSize;
this.productKey = request.productKey;
this.shareTaskCode = request.shareTaskCode;
this.status = request.status;
}
/**
* DeviceName.
*/
public Builder deviceName(String deviceName) {
this.putBodyParameter("DeviceName", deviceName);
this.deviceName = deviceName;
return this;
}
/**
* IotId.
*/
public Builder iotId(String iotId) {
this.putBodyParameter("IotId", iotId);
this.iotId = iotId;
return this;
}
/**
* 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;
}
/**
* ProductKey.
*/
public Builder productKey(String productKey) {
this.putBodyParameter("ProductKey", productKey);
this.productKey = productKey;
return this;
}
/**
* ShareTaskCode.
*/
public Builder shareTaskCode(String shareTaskCode) {
this.putBodyParameter("ShareTaskCode", shareTaskCode);
this.shareTaskCode = shareTaskCode;
return this;
}
/**
* Status.
*/
public Builder status(Integer status) {
this.putBodyParameter("Status", status);
this.status = status;
return this;
}
@Override
public PageQuerySharedSpeechOpenRequest build() {
return new PageQuerySharedSpeechOpenRequest(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy