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

com.aliyun.dingtalkattendance_1_0.models.GetUserHolidaysRequest 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.dingtalkattendance_1_0.models;

import com.aliyun.tea.*;

public class GetUserHolidaysRequest extends TeaModel {
    // 员工列表
    @NameInMap("userIds")
    public java.util.List userIds;

    // 开始日期
    @NameInMap("workDateFrom")
    public Long workDateFrom;

    // 结束日期
    @NameInMap("workDateTo")
    public Long workDateTo;

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

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

    public GetUserHolidaysRequest setWorkDateFrom(Long workDateFrom) {
        this.workDateFrom = workDateFrom;
        return this;
    }
    public Long getWorkDateFrom() {
        return this.workDateFrom;
    }

    public GetUserHolidaysRequest setWorkDateTo(Long workDateTo) {
        this.workDateTo = workDateTo;
        return this;
    }
    public Long getWorkDateTo() {
        return this.workDateTo;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy