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

com.aliyun.dingtalkindustry_1_0.models.CampusListCampusGroupResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CampusListCampusGroupResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

    public static CampusListCampusGroupResponseBody build(java.util.Map map) throws Exception {
        CampusListCampusGroupResponseBody self = new CampusListCampusGroupResponseBody();
        return TeaModel.build(map, self);
    }

    public CampusListCampusGroupResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class CampusListCampusGroupResponseBodyResult extends TeaModel {
        /**
         * example:
         * 

扩展

*/ @NameInMap("extend") public String extend; /** * example: *

10101

*/ @NameInMap("groupDeptId") public Long groupDeptId; /** * example: *

测试项目组

*/ @NameInMap("groupName") public String groupName; public static CampusListCampusGroupResponseBodyResult build(java.util.Map map) throws Exception { CampusListCampusGroupResponseBodyResult self = new CampusListCampusGroupResponseBodyResult(); return TeaModel.build(map, self); } public CampusListCampusGroupResponseBodyResult setExtend(String extend) { this.extend = extend; return this; } public String getExtend() { return this.extend; } public CampusListCampusGroupResponseBodyResult setGroupDeptId(Long groupDeptId) { this.groupDeptId = groupDeptId; return this; } public Long getGroupDeptId() { return this.groupDeptId; } public CampusListCampusGroupResponseBodyResult setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy