
com.aliyun.dingtalkvillage_1_0.models.ListParentByDeptRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkvillage_1_0.models;
import com.aliyun.tea.*;
public class ListParentByDeptRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("departmentId")
public Long departmentId;
/**
* This parameter is required.
*/
@NameInMap("subCorpId")
public String subCorpId;
public static ListParentByDeptRequest build(java.util.Map map) throws Exception {
ListParentByDeptRequest self = new ListParentByDeptRequest();
return TeaModel.build(map, self);
}
public ListParentByDeptRequest setDepartmentId(Long departmentId) {
this.departmentId = departmentId;
return this;
}
public Long getDepartmentId() {
return this.departmentId;
}
public ListParentByDeptRequest setSubCorpId(String subCorpId) {
this.subCorpId = subCorpId;
return this;
}
public String getSubCorpId() {
return this.subCorpId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy