com.aliyun.iot20180120.models.BatchCreateSoundCodeLabelRequest 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 BatchCreateSoundCodeLabelRequest extends TeaModel {
/**
* example:
* test
*/
@NameInMap("Description")
public String description;
/**
* example:
* iot_instc_pu****_c*-v64********
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
/**
* This parameter is required.
*
* example:
* Md3ZiTL888K9llXDy7890***********
*/
@NameInMap("ScheduleCode")
public String scheduleCode;
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("Total")
public Integer total;
public static BatchCreateSoundCodeLabelRequest build(java.util.Map map) throws Exception {
BatchCreateSoundCodeLabelRequest self = new BatchCreateSoundCodeLabelRequest();
return TeaModel.build(map, self);
}
public BatchCreateSoundCodeLabelRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public BatchCreateSoundCodeLabelRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public BatchCreateSoundCodeLabelRequest setScheduleCode(String scheduleCode) {
this.scheduleCode = scheduleCode;
return this;
}
public String getScheduleCode() {
return this.scheduleCode;
}
public BatchCreateSoundCodeLabelRequest setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy