com.aliyun.dingtalkcalendar_1_0.models.GetScheduleByMeRequest 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 GetScheduleByMeRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("endTime")
public String endTime;
/**
* This parameter is required.
*/
@NameInMap("startTime")
public String startTime;
/**
* This parameter is required.
*/
@NameInMap("userIds")
public java.util.List userIds;
public static GetScheduleByMeRequest build(java.util.Map map) throws Exception {
GetScheduleByMeRequest self = new GetScheduleByMeRequest();
return TeaModel.build(map, self);
}
public GetScheduleByMeRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public GetScheduleByMeRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
public GetScheduleByMeRequest setUserIds(java.util.List userIds) {
this.userIds = userIds;
return this;
}
public java.util.List getUserIds() {
return this.userIds;
}
}