All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkworkflow_1_0.models.PremiumGetFieldModifiedHistoryRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy