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

com.aliyun.dingtalkvillage_1_0.models.ListParentByDeptRequest 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.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 - 2024 Weber Informatics LLC | Privacy Policy