com.aliyun.dingtalkh3yun_1_0.models.CreateProcessesInstanceRequest 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.dingtalkh3yun_1_0.models;
import com.aliyun.tea.*;
public class CreateProcessesInstanceRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 006f870b-4d1c-4cd0-85b3-2e866798e947
*/
@NameInMap("bizObjectId")
public String bizObjectId;
/**
* This parameter is required.
*
* example:
* aea4d7a7-d162-4c77-9c44-7bd9cb8316a5
*/
@NameInMap("opUserId")
public String opUserId;
/**
* This parameter is required.
*
* example:
* D0001833abb0fb61524487eb01848207bc89b47
*/
@NameInMap("schemaCode")
public String schemaCode;
public static CreateProcessesInstanceRequest build(java.util.Map map) throws Exception {
CreateProcessesInstanceRequest self = new CreateProcessesInstanceRequest();
return TeaModel.build(map, self);
}
public CreateProcessesInstanceRequest setBizObjectId(String bizObjectId) {
this.bizObjectId = bizObjectId;
return this;
}
public String getBizObjectId() {
return this.bizObjectId;
}
public CreateProcessesInstanceRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
public CreateProcessesInstanceRequest setSchemaCode(String schemaCode) {
this.schemaCode = schemaCode;
return this;
}
public String getSchemaCode() {
return this.schemaCode;
}
}