com.aliyun.dingtalkhrm_1_0.models.GetEmployeeRosterByFieldRequest 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 GetEmployeeRosterByFieldRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("appAgentId")
public Long appAgentId;
@NameInMap("fieldFilterList")
public java.util.List fieldFilterList;
@NameInMap("text2SelectConvert")
public Boolean text2SelectConvert;
/**
* This parameter is required.
*/
@NameInMap("userIdList")
public java.util.List userIdList;
public static GetEmployeeRosterByFieldRequest build(java.util.Map map) throws Exception {
GetEmployeeRosterByFieldRequest self = new GetEmployeeRosterByFieldRequest();
return TeaModel.build(map, self);
}
public GetEmployeeRosterByFieldRequest setAppAgentId(Long appAgentId) {
this.appAgentId = appAgentId;
return this;
}
public Long getAppAgentId() {
return this.appAgentId;
}
public GetEmployeeRosterByFieldRequest setFieldFilterList(java.util.List fieldFilterList) {
this.fieldFilterList = fieldFilterList;
return this;
}
public java.util.List getFieldFilterList() {
return this.fieldFilterList;
}
public GetEmployeeRosterByFieldRequest setText2SelectConvert(Boolean text2SelectConvert) {
this.text2SelectConvert = text2SelectConvert;
return this;
}
public Boolean getText2SelectConvert() {
return this.text2SelectConvert;
}
public GetEmployeeRosterByFieldRequest setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}