com.aliyun.dingtalkproject_1_0.models.UpdateCustomfieldValueRequest 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.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class UpdateCustomfieldValueRequest extends TeaModel {
/**
* example:
* 62a010c153c2ef52xxxx
*/
@NameInMap("customFieldId")
public String customFieldId;
/**
* example:
* 自定义字段-文本
*/
@NameInMap("customFieldName")
public String customFieldName;
/**
* This parameter is required.
*/
@NameInMap("value")
public java.util.List value;
public static UpdateCustomfieldValueRequest build(java.util.Map map) throws Exception {
UpdateCustomfieldValueRequest self = new UpdateCustomfieldValueRequest();
return TeaModel.build(map, self);
}
public UpdateCustomfieldValueRequest setCustomFieldId(String customFieldId) {
this.customFieldId = customFieldId;
return this;
}
public String getCustomFieldId() {
return this.customFieldId;
}
public UpdateCustomfieldValueRequest setCustomFieldName(String customFieldName) {
this.customFieldName = customFieldName;
return this;
}
public String getCustomFieldName() {
return this.customFieldName;
}
public UpdateCustomfieldValueRequest setValue(java.util.List value) {
this.value = value;
return this;
}
public java.util.List getValue() {
return this.value;
}
public static class UpdateCustomfieldValueRequestValue extends TeaModel {
/**
* This parameter is required.
*
* example:
* 我是具体显示值
*/
@NameInMap("title")
public String title;
public static UpdateCustomfieldValueRequestValue build(java.util.Map map) throws Exception {
UpdateCustomfieldValueRequestValue self = new UpdateCustomfieldValueRequestValue();
return TeaModel.build(map, self);
}
public UpdateCustomfieldValueRequestValue setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
}