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

com.aliyun.dingtalkedu_1_0.models.DeletePhysicalClassroomRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// 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