![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrm_1_0.models.RosterMetaAvailableFieldListResponseBody 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class RosterMetaAvailableFieldListResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static RosterMetaAvailableFieldListResponseBody build(java.util.Map map) throws Exception {
RosterMetaAvailableFieldListResponseBody self = new RosterMetaAvailableFieldListResponseBody();
return TeaModel.build(map, self);
}
public RosterMetaAvailableFieldListResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class RosterMetaAvailableFieldListResponseBodyResult extends TeaModel {
/**
* example:
* sys01-employeeType
*/
@NameInMap("fieldCode")
public String fieldCode;
/**
* example:
* 员工类型
*/
@NameInMap("fieldName")
public String fieldName;
/**
* example:
* DDSelectField
*/
@NameInMap("fieldType")
public String fieldType;
/**
* example:
* [{"value":"1","label":"男"},{"value":"2","label":"女"}]
*/
@NameInMap("optionText")
public String optionText;
public static RosterMetaAvailableFieldListResponseBodyResult build(java.util.Map map) throws Exception {
RosterMetaAvailableFieldListResponseBodyResult self = new RosterMetaAvailableFieldListResponseBodyResult();
return TeaModel.build(map, self);
}
public RosterMetaAvailableFieldListResponseBodyResult setFieldCode(String fieldCode) {
this.fieldCode = fieldCode;
return this;
}
public String getFieldCode() {
return this.fieldCode;
}
public RosterMetaAvailableFieldListResponseBodyResult setFieldName(String fieldName) {
this.fieldName = fieldName;
return this;
}
public String getFieldName() {
return this.fieldName;
}
public RosterMetaAvailableFieldListResponseBodyResult setFieldType(String fieldType) {
this.fieldType = fieldType;
return this;
}
public String getFieldType() {
return this.fieldType;
}
public RosterMetaAvailableFieldListResponseBodyResult setOptionText(String optionText) {
this.optionText = optionText;
return this;
}
public String getOptionText() {
return this.optionText;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy