All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkhrm_1_0.models.GetEmployeeRosterByFieldRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy