com.aliyun.dingtalkswform_1_0.models.GetFormInstanceRequest 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.dingtalkswform_1_0.models;
import com.aliyun.tea.*;
public class GetFormInstanceRequest extends TeaModel {
/**
* example:
* 0
*/
@NameInMap("bizType")
public Integer bizType;
public static GetFormInstanceRequest build(java.util.Map map) throws Exception {
GetFormInstanceRequest self = new GetFormInstanceRequest();
return TeaModel.build(map, self);
}
public GetFormInstanceRequest setBizType(Integer bizType) {
this.bizType = bizType;
return this;
}
public Integer getBizType() {
return this.bizType;
}
}