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

com.aliyun.dingtalkworkflow_1_0.models.QueryAllFormInstancesRequest 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 QueryAllFormInstancesRequest extends TeaModel {
    /**
     * example:
     * 

SWAPP-dacdsa-example

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

This parameter is required.

* * example: *

PROC-daccea-example

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

This parameter is required.

* * example: *

100

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

100010

*/ @NameInMap("nextToken") public String nextToken; public static QueryAllFormInstancesRequest build(java.util.Map map) throws Exception { QueryAllFormInstancesRequest self = new QueryAllFormInstancesRequest(); return TeaModel.build(map, self); } public QueryAllFormInstancesRequest setAppUuid(String appUuid) { this.appUuid = appUuid; return this; } public String getAppUuid() { return this.appUuid; } public QueryAllFormInstancesRequest setFormCode(String formCode) { this.formCode = formCode; return this; } public String getFormCode() { return this.formCode; } public QueryAllFormInstancesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryAllFormInstancesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy