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

com.aliyun.dingtalkvillage_1_0.models.ListSubDeptResponseBody 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 ListSubDeptResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("result") public java.util.List result; public static ListSubDeptResponseBody build(java.util.Map map) throws Exception { ListSubDeptResponseBody self = new ListSubDeptResponseBody(); return TeaModel.build(map, self); } public ListSubDeptResponseBody setResult(java.util.List result) { this.result = result; return this; } public java.util.List getResult() { return this.result; } public static class ListSubDeptResponseBodyResult extends TeaModel { /** *

This parameter is required.

*/ @NameInMap("departmentId") public Long departmentId; /** *

This parameter is required.

*/ @NameInMap("name") public String name; public static ListSubDeptResponseBodyResult build(java.util.Map map) throws Exception { ListSubDeptResponseBodyResult self = new ListSubDeptResponseBodyResult(); return TeaModel.build(map, self); } public ListSubDeptResponseBodyResult setDepartmentId(Long departmentId) { this.departmentId = departmentId; return this; } public Long getDepartmentId() { return this.departmentId; } public ListSubDeptResponseBodyResult setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy