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