![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkworkflow_1_0.models.QuerySchemaByProcessCodeRequest 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 QuerySchemaByProcessCodeRequest extends TeaModel {
@NameInMap("appUuid")
public String appUuid;
/**
* This parameter is required.
*
* example:
* PROC-17428B8C-6C60-xxxx-924C-64F1037AE067
*/
@NameInMap("processCode")
public String processCode;
public static QuerySchemaByProcessCodeRequest build(java.util.Map map) throws Exception {
QuerySchemaByProcessCodeRequest self = new QuerySchemaByProcessCodeRequest();
return TeaModel.build(map, self);
}
public QuerySchemaByProcessCodeRequest setAppUuid(String appUuid) {
this.appUuid = appUuid;
return this;
}
public String getAppUuid() {
return this.appUuid;
}
public QuerySchemaByProcessCodeRequest setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy