All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkcalendar_1_0.models.GetScheduleRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcalendar_1_0.models;

import com.aliyun.tea.*;

public class GetScheduleRequest extends TeaModel {
    // 查询结束时间
    @NameInMap("endTime")
    public String endTime;

    // 查询开始时间
    @NameInMap("startTime")
    public String startTime;

    // 待查询的用户列表
    @NameInMap("userIds")
    public java.util.List userIds;

    public static GetScheduleRequest build(java.util.Map map) throws Exception {
        GetScheduleRequest self = new GetScheduleRequest();
        return TeaModel.build(map, self);
    }

    public GetScheduleRequest setEndTime(String endTime) {
        this.endTime = endTime;
        return this;
    }
    public String getEndTime() {
        return this.endTime;
    }

    public GetScheduleRequest setStartTime(String startTime) {
        this.startTime = startTime;
        return this;
    }
    public String getStartTime() {
        return this.startTime;
    }

    public GetScheduleRequest setUserIds(java.util.List userIds) {
        this.userIds = userIds;
        return this;
    }
    public java.util.List getUserIds() {
        return this.userIds;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy