
com.aliyun.dingtalkproject_1_0.models.CreateProjectCustomfieldStatusRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class CreateProjectCustomfieldStatusRequest extends TeaModel {
/**
* example:
* 63a5301e420637003f5dxxxx
*/
@NameInMap("customFieldId")
public String customFieldId;
/**
* example:
* 64a5301e420637003f5dxxxx
*/
@NameInMap("customFieldInstanceId")
public String customFieldInstanceId;
/**
* example:
* 项目进度
*/
@NameInMap("customFieldName")
public String customFieldName;
/**
* This parameter is required.
*/
@NameInMap("value")
public java.util.List value;
public static CreateProjectCustomfieldStatusRequest build(java.util.Map map) throws Exception {
CreateProjectCustomfieldStatusRequest self = new CreateProjectCustomfieldStatusRequest();
return TeaModel.build(map, self);
}
public CreateProjectCustomfieldStatusRequest setCustomFieldId(String customFieldId) {
this.customFieldId = customFieldId;
return this;
}
public String getCustomFieldId() {
return this.customFieldId;
}
public CreateProjectCustomfieldStatusRequest setCustomFieldInstanceId(String customFieldInstanceId) {
this.customFieldInstanceId = customFieldInstanceId;
return this;
}
public String getCustomFieldInstanceId() {
return this.customFieldInstanceId;
}
public CreateProjectCustomfieldStatusRequest setCustomFieldName(String customFieldName) {
this.customFieldName = customFieldName;
return this;
}
public String getCustomFieldName() {
return this.customFieldName;
}
public CreateProjectCustomfieldStatusRequest setValue(java.util.List value) {
this.value = value;
return this;
}
public java.util.List getValue() {
return this.value;
}
public static class CreateProjectCustomfieldStatusRequestValue extends TeaModel {
/**
* example:
* 63a5301e420637003f5dxxxx
*/
@NameInMap("customFieldValueId")
public String customFieldValueId;
/**
* example:
* {}
*/
@NameInMap("metaString")
public String metaString;
/**
* example:
* 进行中
*/
@NameInMap("title")
public String title;
public static CreateProjectCustomfieldStatusRequestValue build(java.util.Map map) throws Exception {
CreateProjectCustomfieldStatusRequestValue self = new CreateProjectCustomfieldStatusRequestValue();
return TeaModel.build(map, self);
}
public CreateProjectCustomfieldStatusRequestValue setCustomFieldValueId(String customFieldValueId) {
this.customFieldValueId = customFieldValueId;
return this;
}
public String getCustomFieldValueId() {
return this.customFieldValueId;
}
public CreateProjectCustomfieldStatusRequestValue setMetaString(String metaString) {
this.metaString = metaString;
return this;
}
public String getMetaString() {
return this.metaString;
}
public CreateProjectCustomfieldStatusRequestValue setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy