![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrbrain_1_0.models.HrbrainImportLabelCustomRequest 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.dingtalkhrbrain_1_0.models;
import com.aliyun.tea.*;
public class HrbrainImportLabelCustomRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("body")
public java.util.List body;
/**
* This parameter is required.
*/
@NameInMap("corpId")
public String corpId;
public static HrbrainImportLabelCustomRequest build(java.util.Map map) throws Exception {
HrbrainImportLabelCustomRequest self = new HrbrainImportLabelCustomRequest();
return TeaModel.build(map, self);
}
public HrbrainImportLabelCustomRequest setBody(java.util.List body) {
this.body = body;
return this;
}
public java.util.List getBody() {
return this.body;
}
public HrbrainImportLabelCustomRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public static class HrbrainImportLabelCustomRequestBody extends TeaModel {
@NameInMap("extendInfo")
public java.util.Map extendInfo;
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*/
@NameInMap("tag")
public String tag;
/**
* This parameter is required.
*/
@NameInMap("workNo")
public String workNo;
public static HrbrainImportLabelCustomRequestBody build(java.util.Map map) throws Exception {
HrbrainImportLabelCustomRequestBody self = new HrbrainImportLabelCustomRequestBody();
return TeaModel.build(map, self);
}
public HrbrainImportLabelCustomRequestBody setExtendInfo(java.util.Map extendInfo) {
this.extendInfo = extendInfo;
return this;
}
public java.util.Map getExtendInfo() {
return this.extendInfo;
}
public HrbrainImportLabelCustomRequestBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public HrbrainImportLabelCustomRequestBody setTag(String tag) {
this.tag = tag;
return this;
}
public String getTag() {
return this.tag;
}
public HrbrainImportLabelCustomRequestBody setWorkNo(String workNo) {
this.workNo = workNo;
return this;
}
public String getWorkNo() {
return this.workNo;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy