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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;

import com.aliyun.tea.*;

public class PremiumGetFormInstancesRequest 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 PremiumGetFormInstancesRequest build(java.util.Map map) throws Exception { PremiumGetFormInstancesRequest self = new PremiumGetFormInstancesRequest(); return TeaModel.build(map, self); } public PremiumGetFormInstancesRequest setAppUuid(String appUuid) { this.appUuid = appUuid; return this; } public String getAppUuid() { return this.appUuid; } public PremiumGetFormInstancesRequest setFormCode(String formCode) { this.formCode = formCode; return this; } public String getFormCode() { return this.formCode; } public PremiumGetFormInstancesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public PremiumGetFormInstancesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy