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

com.aliyun.dingtalktodo_1_0.models.CountTodoTasksRequest 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.dingtalktodo_1_0.models;

import com.aliyun.tea.*;

public class CountTodoTasksRequest extends TeaModel {
    // 所属分类
    @NameInMap("category")
    public String category;

    // 查询从计划完成时间开始
    @NameInMap("fromDueTime")
    public Long fromDueTime;

    // 待办完成状态。
    @NameInMap("isDone")
    public Boolean isDone;

    // 待办回收状态
    @NameInMap("isRecycled")
    public Boolean isRecycled;

    // 查询目标用户角色类型,执行人 | 创建人 | 参与人,可以同时传多个值。如:[["executor"], ["creator"],["participant"]] 或 [["executor", "creator"]]
    @NameInMap("roleTypes")
    public java.util.List> roleTypes;

    // 查询到计划完成时间结束
    @NameInMap("toDueTime")
    public Long toDueTime;

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

    public CountTodoTasksRequest setCategory(String category) {
        this.category = category;
        return this;
    }
    public String getCategory() {
        return this.category;
    }

    public CountTodoTasksRequest setFromDueTime(Long fromDueTime) {
        this.fromDueTime = fromDueTime;
        return this;
    }
    public Long getFromDueTime() {
        return this.fromDueTime;
    }

    public CountTodoTasksRequest setIsDone(Boolean isDone) {
        this.isDone = isDone;
        return this;
    }
    public Boolean getIsDone() {
        return this.isDone;
    }

    public CountTodoTasksRequest setIsRecycled(Boolean isRecycled) {
        this.isRecycled = isRecycled;
        return this;
    }
    public Boolean getIsRecycled() {
        return this.isRecycled;
    }

    public CountTodoTasksRequest setRoleTypes(java.util.List> roleTypes) {
        this.roleTypes = roleTypes;
        return this;
    }
    public java.util.List> getRoleTypes() {
        return this.roleTypes;
    }

    public CountTodoTasksRequest setToDueTime(Long toDueTime) {
        this.toDueTime = toDueTime;
        return this;
    }
    public Long getToDueTime() {
        return this.toDueTime;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy