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

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

There is a newer version: 2.1.88
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 QueryAllProcessInstancesRequest extends TeaModel {
    /**
     * example:
     * 

SWAPP-4C2F4B-example

*/ @NameInMap("appUuid") public String appUuid; /** * example: *

1633795200000

*/ @NameInMap("endTimeInMills") public Long endTimeInMills; /** *

This parameter is required.

* * example: *

10

*/ @NameInMap("maxResults") public Long maxResults; /** * example: *

1

*/ @NameInMap("nextToken") public String nextToken; /** *

This parameter is required.

* * example: *

PROC-C53-example

*/ @NameInMap("processCode") public String processCode; /** *

This parameter is required.

* * example: *

1631289600000

*/ @NameInMap("startTimeInMills") public Long startTimeInMills; public static QueryAllProcessInstancesRequest build(java.util.Map map) throws Exception { QueryAllProcessInstancesRequest self = new QueryAllProcessInstancesRequest(); return TeaModel.build(map, self); } public QueryAllProcessInstancesRequest setAppUuid(String appUuid) { this.appUuid = appUuid; return this; } public String getAppUuid() { return this.appUuid; } public QueryAllProcessInstancesRequest setEndTimeInMills(Long endTimeInMills) { this.endTimeInMills = endTimeInMills; return this; } public Long getEndTimeInMills() { return this.endTimeInMills; } public QueryAllProcessInstancesRequest setMaxResults(Long maxResults) { this.maxResults = maxResults; return this; } public Long getMaxResults() { return this.maxResults; } public QueryAllProcessInstancesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryAllProcessInstancesRequest setProcessCode(String processCode) { this.processCode = processCode; return this; } public String getProcessCode() { return this.processCode; } public QueryAllProcessInstancesRequest setStartTimeInMills(Long startTimeInMills) { this.startTimeInMills = startTimeInMills; return this; } public Long getStartTimeInMills() { return this.startTimeInMills; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy