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