com.aliyun.dingtalkhrbrain_1_0.models.HrbrainImportLabelInventoryRequest 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 HrbrainImportLabelInventoryRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("body")
public java.util.List body;
/**
* This parameter is required.
*/
@NameInMap("corpId")
public String corpId;
public static HrbrainImportLabelInventoryRequest build(java.util.Map map) throws Exception {
HrbrainImportLabelInventoryRequest self = new HrbrainImportLabelInventoryRequest();
return TeaModel.build(map, self);
}
public HrbrainImportLabelInventoryRequest setBody(java.util.List body) {
this.body = body;
return this;
}
public java.util.List getBody() {
return this.body;
}
public HrbrainImportLabelInventoryRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public static class HrbrainImportLabelInventoryRequestBody extends TeaModel {
@NameInMap("extendInfo")
public java.util.Map extendInfo;
/**
* This parameter is required.
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*/
@NameInMap("period")
public String period;
/**
* This parameter is required.
*/
@NameInMap("workNo")
public String workNo;
public static HrbrainImportLabelInventoryRequestBody build(java.util.Map map) throws Exception {
HrbrainImportLabelInventoryRequestBody self = new HrbrainImportLabelInventoryRequestBody();
return TeaModel.build(map, self);
}
public HrbrainImportLabelInventoryRequestBody setExtendInfo(java.util.Map extendInfo) {
this.extendInfo = extendInfo;
return this;
}
public java.util.Map getExtendInfo() {
return this.extendInfo;
}
public HrbrainImportLabelInventoryRequestBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public HrbrainImportLabelInventoryRequestBody setPeriod(String period) {
this.period = period;
return this;
}
public String getPeriod() {
return this.period;
}
public HrbrainImportLabelInventoryRequestBody setWorkNo(String workNo) {
this.workNo = workNo;
return this;
}
public String getWorkNo() {
return this.workNo;
}
}
}