![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkworkflow_1_0.models.SaveIntegratedInstanceResponseBody 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 SaveIntegratedInstanceResponseBody extends TeaModel {
@NameInMap("result")
public SaveIntegratedInstanceResponseBodyResult result;
public static SaveIntegratedInstanceResponseBody build(java.util.Map map) throws Exception {
SaveIntegratedInstanceResponseBody self = new SaveIntegratedInstanceResponseBody();
return TeaModel.build(map, self);
}
public SaveIntegratedInstanceResponseBody setResult(SaveIntegratedInstanceResponseBodyResult result) {
this.result = result;
return this;
}
public SaveIntegratedInstanceResponseBodyResult getResult() {
return this.result;
}
public static class SaveIntegratedInstanceResponseBodyResult extends TeaModel {
/**
* example:
* proc-abc
*/
@NameInMap("processInstanceId")
public String processInstanceId;
public static SaveIntegratedInstanceResponseBodyResult build(java.util.Map map) throws Exception {
SaveIntegratedInstanceResponseBodyResult self = new SaveIntegratedInstanceResponseBodyResult();
return TeaModel.build(map, self);
}
public SaveIntegratedInstanceResponseBodyResult setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy