com.aliyun.iot20180120.models.CreateSchedulePeriodRequest 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 CreateSchedulePeriodRequest extends TeaModel {
@NameInMap("Description")
public String description;
@NameInMap("EndTime")
public String endTime;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("ScheduleCode")
public String scheduleCode;
@NameInMap("SoundCodeContent")
public String soundCodeContent;
@NameInMap("StartTime")
public String startTime;
public static CreateSchedulePeriodRequest build(java.util.Map map) throws Exception {
CreateSchedulePeriodRequest self = new CreateSchedulePeriodRequest();
return TeaModel.build(map, self);
}
public CreateSchedulePeriodRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateSchedulePeriodRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public CreateSchedulePeriodRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public CreateSchedulePeriodRequest setScheduleCode(String scheduleCode) {
this.scheduleCode = scheduleCode;
return this;
}
public String getScheduleCode() {
return this.scheduleCode;
}
public CreateSchedulePeriodRequest setSoundCodeContent(String soundCodeContent) {
this.soundCodeContent = soundCodeContent;
return this;
}
public String getSoundCodeContent() {
return this.soundCodeContent;
}
public CreateSchedulePeriodRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy