![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkcalendar_1_0.models.GetMeetingRoomsScheduleRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcalendar_1_0.models;
import com.aliyun.tea.*;
public class GetMeetingRoomsScheduleRequest extends TeaModel {
/**
* This parameter is required.
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
*/
@NameInMap("endTime")
public String endTime;
/**
* This parameter is required.
*/
@NameInMap("roomIds")
public java.util.List roomIds;
/**
* This parameter is required.
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
*/
@NameInMap("startTime")
public String startTime;
public static GetMeetingRoomsScheduleRequest build(java.util.Map map) throws Exception {
GetMeetingRoomsScheduleRequest self = new GetMeetingRoomsScheduleRequest();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public GetMeetingRoomsScheduleRequest setRoomIds(java.util.List roomIds) {
this.roomIds = roomIds;
return this;
}
public java.util.List getRoomIds() {
return this.roomIds;
}
public GetMeetingRoomsScheduleRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy