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

com.aliyun.dingtalkworkflow_1_0.models.TodoTasksRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy