com.aliyun.iot20180120.models.QuerySoundCodeLabelListRequest 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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class QuerySoundCodeLabelListRequest extends TeaModel {
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("PageId")
public Integer pageId;
@NameInMap("PageSize")
public Integer pageSize;
@NameInMap("ScheduleCode")
public String scheduleCode;
public static QuerySoundCodeLabelListRequest build(java.util.Map map) throws Exception {
QuerySoundCodeLabelListRequest self = new QuerySoundCodeLabelListRequest();
return TeaModel.build(map, self);
}
public QuerySoundCodeLabelListRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QuerySoundCodeLabelListRequest setPageId(Integer pageId) {
this.pageId = pageId;
return this;
}
public Integer getPageId() {
return this.pageId;
}
public QuerySoundCodeLabelListRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QuerySoundCodeLabelListRequest setScheduleCode(String scheduleCode) {
this.scheduleCode = scheduleCode;
return this;
}
public String getScheduleCode() {
return this.scheduleCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy