com.aliyun.dingtalkworkflow_1_0.models.StartProcessInstanceResponseBody 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 StartProcessInstanceResponseBody extends TeaModel {
// 审批实例id
@NameInMap("instanceId")
public String instanceId;
public static StartProcessInstanceResponseBody build(java.util.Map map) throws Exception {
StartProcessInstanceResponseBody self = new StartProcessInstanceResponseBody();
return TeaModel.build(map, self);
}
public StartProcessInstanceResponseBody setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
}