com.aliyun.iot20180120.models.QuerySoundCodeListRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class QuerySoundCodeListRequest extends TeaModel {
/**
* example:
* iot_instc_pu****_c*-v64********
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
/**
* example:
* 1
*/
@NameInMap("PageId")
public Integer pageId;
/**
* example:
* 20
*/
@NameInMap("PageSize")
public Integer pageSize;
public static QuerySoundCodeListRequest build(java.util.Map map) throws Exception {
QuerySoundCodeListRequest self = new QuerySoundCodeListRequest();
return TeaModel.build(map, self);
}
public QuerySoundCodeListRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QuerySoundCodeListRequest setPageId(Integer pageId) {
this.pageId = pageId;
return this;
}
public Integer getPageId() {
return this.pageId;
}
public QuerySoundCodeListRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy