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

com.aliyun.dingtalkhrm_1_0.models.QueryCustomEntryProcessesRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy