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

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

There is a newer version: 2.1.30
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 CampusGetCampusGroupResponseBody extends TeaModel {
    // 扩展信息
    @NameInMap("extend")
    public String extend;

    // 项目名
    @NameInMap("projectGroupName")
    public String projectGroupName;

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

    public CampusGetCampusGroupResponseBody setExtend(String extend) {
        this.extend = extend;
        return this;
    }
    public String getExtend() {
        return this.extend;
    }

    public CampusGetCampusGroupResponseBody setProjectGroupName(String projectGroupName) {
        this.projectGroupName = projectGroupName;
        return this;
    }
    public String getProjectGroupName() {
        return this.projectGroupName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy