com.aliyun.dingtalkworkflow_1_0.models.TodoTasksRequest 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 TodoTasksRequest 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 TodoTasksRequest build(java.util.Map map) throws Exception {
TodoTasksRequest self = new TodoTasksRequest();
return TeaModel.build(map, self);
}
public TodoTasksRequest setActionerUserId(String actionerUserId) {
this.actionerUserId = actionerUserId;
return this;
}
public String getActionerUserId() {
return this.actionerUserId;
}
public TodoTasksRequest setManagerUserId(String managerUserId) {
this.managerUserId = managerUserId;
return this;
}
public String getManagerUserId() {
return this.managerUserId;
}
public TodoTasksRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public TodoTasksRequest setNextToken(Integer nextToken) {
this.nextToken = nextToken;
return this;
}
public Integer getNextToken() {
return this.nextToken;
}
}