com.aliyun.dingtalkworkflow_1_0.models.GetFieldModifiedHistoryRequest 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 GetFieldModifiedHistoryRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* TextField-abcd
*/
@NameInMap("fieldId")
public String fieldId;
/**
* This parameter is required.
*
* example:
* proc-FF6Y2xxxx
*/
@NameInMap("processInstanceId")
public String processInstanceId;
public static GetFieldModifiedHistoryRequest build(java.util.Map map) throws Exception {
GetFieldModifiedHistoryRequest self = new GetFieldModifiedHistoryRequest();
return TeaModel.build(map, self);
}
public GetFieldModifiedHistoryRequest setFieldId(String fieldId) {
this.fieldId = fieldId;
return this;
}
public String getFieldId() {
return this.fieldId;
}
public GetFieldModifiedHistoryRequest setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
}