com.aliyun.dingtalkworkflow_1_0.models.QueryAllFormInstancesRequest 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.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;
}
}