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

com.aliyun.dingtalkindustry_1_0.models.CampusUpdateCampusGroupRequest 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CampusUpdateCampusGroupRequest extends TeaModel {
    /**
     * 

This parameter is required.

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

扩展信息

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

绿城未来park

*/ @NameInMap("name") public String name; public static CampusUpdateCampusGroupRequest build(java.util.Map map) throws Exception { CampusUpdateCampusGroupRequest self = new CampusUpdateCampusGroupRequest(); return TeaModel.build(map, self); } public CampusUpdateCampusGroupRequest setCampusProjectGroupId(Long campusProjectGroupId) { this.campusProjectGroupId = campusProjectGroupId; return this; } public Long getCampusProjectGroupId() { return this.campusProjectGroupId; } public CampusUpdateCampusGroupRequest setExtend(String extend) { this.extend = extend; return this; } public String getExtend() { return this.extend; } public CampusUpdateCampusGroupRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy