com.aliyun.dingtalkworkflow_1_0.models.GetFieldModifiedHistoryResponseBody 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 GetFieldModifiedHistoryResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
/**
* example:
* true
*/
@NameInMap("success")
public Boolean success;
public static GetFieldModifiedHistoryResponseBody build(java.util.Map map) throws Exception {
GetFieldModifiedHistoryResponseBody self = new GetFieldModifiedHistoryResponseBody();
return TeaModel.build(map, self);
}
public GetFieldModifiedHistoryResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public GetFieldModifiedHistoryResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class GetFieldModifiedHistoryResponseBodyResult extends TeaModel {
/**
* Use the UTC time format: yyyy-MM-ddTHH:mmZ
*
* example:
* 2024-04-02T11:52Z
*/
@NameInMap("createTime")
public String createTime;
/**
* example:
* TextField-abcd
*/
@NameInMap("fieldId")
public String fieldId;
/**
* example:
* 钉钉1
*/
@NameInMap("name")
public String name;
/**
* example:
* userId1
*/
@NameInMap("userId")
public String userId;
/**
* example:
* 从 111 修改到 222
*/
@NameInMap("value")
public String value;
public static GetFieldModifiedHistoryResponseBodyResult build(java.util.Map map) throws Exception {
GetFieldModifiedHistoryResponseBodyResult self = new GetFieldModifiedHistoryResponseBodyResult();
return TeaModel.build(map, self);
}
public GetFieldModifiedHistoryResponseBodyResult setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetFieldModifiedHistoryResponseBodyResult setFieldId(String fieldId) {
this.fieldId = fieldId;
return this;
}
public String getFieldId() {
return this.fieldId;
}
public GetFieldModifiedHistoryResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetFieldModifiedHistoryResponseBodyResult setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public GetFieldModifiedHistoryResponseBodyResult setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
}