com.aliyun.dingtalkworkflow_1_0.models.PremiumGetFieldModifiedHistoryRequest 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 PremiumGetFieldModifiedHistoryRequest 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 PremiumGetFieldModifiedHistoryRequest build(java.util.Map map) throws Exception {
PremiumGetFieldModifiedHistoryRequest self = new PremiumGetFieldModifiedHistoryRequest();
return TeaModel.build(map, self);
}
public PremiumGetFieldModifiedHistoryRequest setFieldId(String fieldId) {
this.fieldId = fieldId;
return this;
}
public String getFieldId() {
return this.fieldId;
}
public PremiumGetFieldModifiedHistoryRequest setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
}