com.aliyun.dingtalkindustry_1_0.models.CampusGetCampusRequest 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 CampusGetCampusRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 11
*/
@NameInMap("campusDeptId")
public Long campusDeptId;
public static CampusGetCampusRequest build(java.util.Map map) throws Exception {
CampusGetCampusRequest self = new CampusGetCampusRequest();
return TeaModel.build(map, self);
}
public CampusGetCampusRequest setCampusDeptId(Long campusDeptId) {
this.campusDeptId = campusDeptId;
return this;
}
public Long getCampusDeptId() {
return this.campusDeptId;
}
}