![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkworkflow_1_0.models.PremiumQueryTodoTasksByManagerRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class PremiumQueryTodoTasksByManagerRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* staffId123
*/
@NameInMap("actionerUserId")
public String actionerUserId;
/**
* This parameter is required.
*
* example:
* manager123
*/
@NameInMap("managerUserId")
public String managerUserId;
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* This parameter is required.
*/
@NameInMap("nextToken")
public Integer nextToken;
public static PremiumQueryTodoTasksByManagerRequest build(java.util.Map map) throws Exception {
PremiumQueryTodoTasksByManagerRequest self = new PremiumQueryTodoTasksByManagerRequest();
return TeaModel.build(map, self);
}
public PremiumQueryTodoTasksByManagerRequest setActionerUserId(String actionerUserId) {
this.actionerUserId = actionerUserId;
return this;
}
public String getActionerUserId() {
return this.actionerUserId;
}
public PremiumQueryTodoTasksByManagerRequest setManagerUserId(String managerUserId) {
this.managerUserId = managerUserId;
return this;
}
public String getManagerUserId() {
return this.managerUserId;
}
public PremiumQueryTodoTasksByManagerRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public PremiumQueryTodoTasksByManagerRequest setNextToken(Integer nextToken) {
this.nextToken = nextToken;
return this;
}
public Integer getNextToken() {
return this.nextToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy