![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkedu_1_0.models.DeletePhysicalClassroomRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class DeletePhysicalClassroomRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 100016
*/
@NameInMap("classroomId")
public Long classroomId;
/**
* This parameter is required.
*
* example:
* manger234
*/
@NameInMap("opUserId")
public String opUserId;
public static DeletePhysicalClassroomRequest build(java.util.Map map) throws Exception {
DeletePhysicalClassroomRequest self = new DeletePhysicalClassroomRequest();
return TeaModel.build(map, self);
}
public DeletePhysicalClassroomRequest setClassroomId(Long classroomId) {
this.classroomId = classroomId;
return this;
}
public Long getClassroomId() {
return this.classroomId;
}
public DeletePhysicalClassroomRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy