com.aliyun.dingtalkindustry_1_0.models.CampusDeleteCampusGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CampusDeleteCampusGroupRequest extends TeaModel {
// 园区项目组ID
@NameInMap("campusProjectGroupId")
public Long campusProjectGroupId;
public static CampusDeleteCampusGroupRequest build(java.util.Map map) throws Exception {
CampusDeleteCampusGroupRequest self = new CampusDeleteCampusGroupRequest();
return TeaModel.build(map, self);
}
public CampusDeleteCampusGroupRequest setCampusProjectGroupId(Long campusProjectGroupId) {
this.campusProjectGroupId = campusProjectGroupId;
return this;
}
public Long getCampusProjectGroupId() {
return this.campusProjectGroupId;
}
}