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

com.aliyun.dingtalktodo_1_0.models.QueryOrgTodoByUserRequest 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 QueryOrgTodoByUserRequest extends TeaModel {
    // 查询从计划完成时间开始
    @NameInMap("fromDueTime")
    public Long fromDueTime;

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

    // 每页数量。
    @NameInMap("maxResults")
    public Integer maxResults;

    // 分页游标。如果一个查询条件一次无法全部返回结果,会返回分页token,下次查询带上该token后会返回后续数据,直到分页token为null表示数据已经全部查询完毕。
    @NameInMap("nextToken")
    public String nextToken;

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

    // 待办标题
    @NameInMap("subject")
    public String subject;

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

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

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

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

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

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

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

    public QueryOrgTodoByUserRequest setSubject(String subject) {
        this.subject = subject;
        return this;
    }
    public String getSubject() {
        return this.subject;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy