![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkworkflow_1_0.models.PremiumGetFormInstanceRequest 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 PremiumGetFormInstanceRequest extends TeaModel {
/**
* example:
* SWAPP-dfeacds-example
*/
@NameInMap("appUuid")
public String appUuid;
/**
* This parameter is required.
*
* example:
* PROC-abcdef-example
*/
@NameInMap("formCode")
public String formCode;
/**
* This parameter is required.
*
* example:
* 951a8-8828-430c-b3e-example
*/
@NameInMap("formInstanceId")
public String formInstanceId;
public static PremiumGetFormInstanceRequest build(java.util.Map map) throws Exception {
PremiumGetFormInstanceRequest self = new PremiumGetFormInstanceRequest();
return TeaModel.build(map, self);
}
public PremiumGetFormInstanceRequest setAppUuid(String appUuid) {
this.appUuid = appUuid;
return this;
}
public String getAppUuid() {
return this.appUuid;
}
public PremiumGetFormInstanceRequest setFormCode(String formCode) {
this.formCode = formCode;
return this;
}
public String getFormCode() {
return this.formCode;
}
public PremiumGetFormInstanceRequest setFormInstanceId(String formInstanceId) {
this.formInstanceId = formInstanceId;
return this;
}
public String getFormInstanceId() {
return this.formInstanceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy