![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrbrain_1_0.models.HrbrainDeleteLabelIndustryRequest 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 HrbrainDeleteLabelIndustryRequest extends TeaModel {
@NameInMap("params")
public java.util.List params;
public static HrbrainDeleteLabelIndustryRequest build(java.util.Map map) throws Exception {
HrbrainDeleteLabelIndustryRequest self = new HrbrainDeleteLabelIndustryRequest();
return TeaModel.build(map, self);
}
public HrbrainDeleteLabelIndustryRequest setParams(java.util.List params) {
this.params = params;
return this;
}
public java.util.List getParams() {
return this.params;
}
public static class HrbrainDeleteLabelIndustryRequestParams extends TeaModel {
@NameInMap("label")
public java.util.Map label;
/**
* This parameter is required.
*/
@NameInMap("workNo")
public String workNo;
public static HrbrainDeleteLabelIndustryRequestParams build(java.util.Map map) throws Exception {
HrbrainDeleteLabelIndustryRequestParams self = new HrbrainDeleteLabelIndustryRequestParams();
return TeaModel.build(map, self);
}
public HrbrainDeleteLabelIndustryRequestParams setLabel(java.util.Map label) {
this.label = label;
return this;
}
public java.util.Map getLabel() {
return this.label;
}
public HrbrainDeleteLabelIndustryRequestParams setWorkNo(String workNo) {
this.workNo = workNo;
return this;
}
public String getWorkNo() {
return this.workNo;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy