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

com.aliyun.dingtalkcontact_1_0.models.ListEmpLeaveRecordsRequest 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.dingtalkcontact_1_0.models;

import com.aliyun.tea.*;

public class ListEmpLeaveRecordsRequest extends TeaModel {
    // 结束时间,YYYY-MM-DDTHH:mm:ssZ (ISO 8601/RFC 3339)
    @NameInMap("endTime")
    public String endTime;

    // 分页大小
    @NameInMap("maxResults")
    public Integer maxResults;

    // 分页token
    @NameInMap("nextToken")
    public String nextToken;

    // 开始时间,YYYY-MM-DDTHH:mm:ssZ (ISO 8601/RFC 3339)
    @NameInMap("startTime")
    public String startTime;

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

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

    public ListEmpLeaveRecordsRequest setMaxResults(Integer maxResults) {
        this.maxResults = maxResults;
        return this;
    }
    public Integer getMaxResults() {
        return this.maxResults;
    }

    public ListEmpLeaveRecordsRequest setNextToken(String nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public String getNextToken() {
        return this.nextToken;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy