com.aliyun.dingtalkswform_1_0.models.GetFormInstanceResponseBody 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 GetFormInstanceResponseBody extends TeaModel {
@NameInMap("result")
public GetFormInstanceResponseBodyResult result;
/**
* example:
* true
*/
@NameInMap("success")
public Boolean success;
public static GetFormInstanceResponseBody build(java.util.Map map) throws Exception {
GetFormInstanceResponseBody self = new GetFormInstanceResponseBody();
return TeaModel.build(map, self);
}
public GetFormInstanceResponseBody setResult(GetFormInstanceResponseBodyResult result) {
this.result = result;
return this;
}
public GetFormInstanceResponseBodyResult getResult() {
return this.result;
}
public GetFormInstanceResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class GetFormInstanceResponseBodyResultForms extends TeaModel {
/**
* example:
* TextareaField_KGAW58AQ
*/
@NameInMap("key")
public String key;
/**
* example:
* 你希望的主题
*/
@NameInMap("label")
public String label;
/**
* example:
* 操作演示
*/
@NameInMap("value")
public String value;
public static GetFormInstanceResponseBodyResultForms build(java.util.Map map) throws Exception {
GetFormInstanceResponseBodyResultForms self = new GetFormInstanceResponseBodyResultForms();
return TeaModel.build(map, self);
}
public GetFormInstanceResponseBodyResultForms setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public GetFormInstanceResponseBodyResultForms setLabel(String label) {
this.label = label;
return this;
}
public String getLabel() {
return this.label;
}
public GetFormInstanceResponseBodyResultForms setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class GetFormInstanceResponseBodyResult extends TeaModel {
/**
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
*
* example:
* 2022-07-27T18:53Z
*/
@NameInMap("createTime")
public String createTime;
/**
* example:
* manager4220
*/
@NameInMap("creator")
public String creator;
/**
* example:
* PROC-E5BD2166-B6F4-xxxx
*/
@NameInMap("formCode")
public String formCode;
@NameInMap("forms")
public java.util.List forms;
/**
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
*
* example:
* 2022-07-27T18:53Z
*/
@NameInMap("modifyTime")
public String modifyTime;
/**
* example:
* 智能填表测试
*/
@NameInMap("title")
public String title;
public static GetFormInstanceResponseBodyResult build(java.util.Map map) throws Exception {
GetFormInstanceResponseBodyResult self = new GetFormInstanceResponseBodyResult();
return TeaModel.build(map, self);
}
public GetFormInstanceResponseBodyResult setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetFormInstanceResponseBodyResult setCreator(String creator) {
this.creator = creator;
return this;
}
public String getCreator() {
return this.creator;
}
public GetFormInstanceResponseBodyResult setFormCode(String formCode) {
this.formCode = formCode;
return this;
}
public String getFormCode() {
return this.formCode;
}
public GetFormInstanceResponseBodyResult setForms(java.util.List forms) {
this.forms = forms;
return this;
}
public java.util.List getForms() {
return this.forms;
}
public GetFormInstanceResponseBodyResult setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
return this;
}
public String getModifyTime() {
return this.modifyTime;
}
public GetFormInstanceResponseBodyResult setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
}