com.aliyun.dingtalkhrm_1_0.models.QueryCustomEntryProcessesRequest 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class QueryCustomEntryProcessesRequest extends TeaModel {
/**
* example:
* 20,最大为100,不填默认为100
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* 默认为0
*/
@NameInMap("nextToken")
public Integer nextToken;
@NameInMap("operateUserId")
public String operateUserId;
public static QueryCustomEntryProcessesRequest build(java.util.Map map) throws Exception {
QueryCustomEntryProcessesRequest self = new QueryCustomEntryProcessesRequest();
return TeaModel.build(map, self);
}
public QueryCustomEntryProcessesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryCustomEntryProcessesRequest setNextToken(Integer nextToken) {
this.nextToken = nextToken;
return this;
}
public Integer getNextToken() {
return this.nextToken;
}
public QueryCustomEntryProcessesRequest setOperateUserId(String operateUserId) {
this.operateUserId = operateUserId;
return this;
}
public String getOperateUserId() {
return this.operateUserId;
}
}