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

com.aliyun.dingtalkexclusive_1_0.models.ListPunchScheduleByConditionWithPagingRequest 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class ListPunchScheduleByConditionWithPagingRequest extends TeaModel {
    // 业务实例id,在该接口中表示打卡机实例id
    @NameInMap("bizInstanceId")
    public String bizInstanceId;

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

    // 游标位置
    @NameInMap("nextToken")
    public Long nextToken;

    // 查询日期结束时间(yyyy-MM-dd)
    @NameInMap("scheduleDateEnd")
    public String scheduleDateEnd;

    // 查询日期开始时间(yyyy-MM-dd))
    @NameInMap("scheduleDateStart")
    public String scheduleDateStart;

    // 用户id列表
    @NameInMap("userIdList")
    public java.util.List userIdList;

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

    public ListPunchScheduleByConditionWithPagingRequest setBizInstanceId(String bizInstanceId) {
        this.bizInstanceId = bizInstanceId;
        return this;
    }
    public String getBizInstanceId() {
        return this.bizInstanceId;
    }

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

    public ListPunchScheduleByConditionWithPagingRequest setNextToken(Long nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public Long getNextToken() {
        return this.nextToken;
    }

    public ListPunchScheduleByConditionWithPagingRequest setScheduleDateEnd(String scheduleDateEnd) {
        this.scheduleDateEnd = scheduleDateEnd;
        return this;
    }
    public String getScheduleDateEnd() {
        return this.scheduleDateEnd;
    }

    public ListPunchScheduleByConditionWithPagingRequest setScheduleDateStart(String scheduleDateStart) {
        this.scheduleDateStart = scheduleDateStart;
        return this;
    }
    public String getScheduleDateStart() {
        return this.scheduleDateStart;
    }

    public ListPunchScheduleByConditionWithPagingRequest setUserIdList(java.util.List userIdList) {
        this.userIdList = userIdList;
        return this;
    }
    public java.util.List getUserIdList() {
        return this.userIdList;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy