com.aliyun.dingtalkworkflow_1_0.models.PremiumGetFieldModifiedHistoryResponseBody 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 PremiumGetFieldModifiedHistoryResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
/**
* example:
* true
*/
@NameInMap("success")
public Boolean success;
public static PremiumGetFieldModifiedHistoryResponseBody build(java.util.Map map) throws Exception {
PremiumGetFieldModifiedHistoryResponseBody self = new PremiumGetFieldModifiedHistoryResponseBody();
return TeaModel.build(map, self);
}
public PremiumGetFieldModifiedHistoryResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public PremiumGetFieldModifiedHistoryResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class PremiumGetFieldModifiedHistoryResponseBodyResult 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 PremiumGetFieldModifiedHistoryResponseBodyResult build(java.util.Map map) throws Exception {
PremiumGetFieldModifiedHistoryResponseBodyResult self = new PremiumGetFieldModifiedHistoryResponseBodyResult();
return TeaModel.build(map, self);
}
public PremiumGetFieldModifiedHistoryResponseBodyResult setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public PremiumGetFieldModifiedHistoryResponseBodyResult setFieldId(String fieldId) {
this.fieldId = fieldId;
return this;
}
public String getFieldId() {
return this.fieldId;
}
public PremiumGetFieldModifiedHistoryResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public PremiumGetFieldModifiedHistoryResponseBodyResult setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public PremiumGetFieldModifiedHistoryResponseBodyResult setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
}