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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class UpdateRemoteClassCourseRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("attendParticipants") public java.util.List attendParticipants; /** *

This parameter is required.

*/ @NameInMap("authCode") public String authCode; /** *

This parameter is required.

* * example: *

qdPP123456

*/ @NameInMap("courseCode") public String courseCode; /** *

This parameter is required.

* * example: *

春天来了

*/ @NameInMap("courseName") public String courseName; /** *

This parameter is required.

* * example: *

1634184000000

*/ @NameInMap("endTime") public Long endTime; /** *

This parameter is required.

* * example: *

1634176800000

*/ @NameInMap("startTime") public Long startTime; /** *

This parameter is required.

*/ @NameInMap("teachingParticipant") public UpdateRemoteClassCourseRequestTeachingParticipant teachingParticipant; public static UpdateRemoteClassCourseRequest build(java.util.Map map) throws Exception { UpdateRemoteClassCourseRequest self = new UpdateRemoteClassCourseRequest(); return TeaModel.build(map, self); } public UpdateRemoteClassCourseRequest setAttendParticipants(java.util.List attendParticipants) { this.attendParticipants = attendParticipants; return this; } public java.util.List getAttendParticipants() { return this.attendParticipants; } public UpdateRemoteClassCourseRequest setAuthCode(String authCode) { this.authCode = authCode; return this; } public String getAuthCode() { return this.authCode; } public UpdateRemoteClassCourseRequest setCourseCode(String courseCode) { this.courseCode = courseCode; return this; } public String getCourseCode() { return this.courseCode; } public UpdateRemoteClassCourseRequest setCourseName(String courseName) { this.courseName = courseName; return this; } public String getCourseName() { return this.courseName; } public UpdateRemoteClassCourseRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public UpdateRemoteClassCourseRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public UpdateRemoteClassCourseRequest setTeachingParticipant(UpdateRemoteClassCourseRequestTeachingParticipant teachingParticipant) { this.teachingParticipant = teachingParticipant; return this; } public UpdateRemoteClassCourseRequestTeachingParticipant getTeachingParticipant() { return this.teachingParticipant; } public static class UpdateRemoteClassCourseRequestAttendParticipants extends TeaModel { /** *

This parameter is required.

* * example: *

ding234567

*/ @NameInMap("corpId") public String corpId; /** *

This parameter is required.

* * example: *

234567

*/ @NameInMap("participantId") public String participantId; public static UpdateRemoteClassCourseRequestAttendParticipants build(java.util.Map map) throws Exception { UpdateRemoteClassCourseRequestAttendParticipants self = new UpdateRemoteClassCourseRequestAttendParticipants(); return TeaModel.build(map, self); } public UpdateRemoteClassCourseRequestAttendParticipants setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public UpdateRemoteClassCourseRequestAttendParticipants setParticipantId(String participantId) { this.participantId = participantId; return this; } public String getParticipantId() { return this.participantId; } } public static class UpdateRemoteClassCourseRequestTeachingParticipant extends TeaModel { /** *

This parameter is required.

* * example: *

ding123456

*/ @NameInMap("corpId") public String corpId; /** *

This parameter is required.

* * example: *

123456

*/ @NameInMap("participantId") public String participantId; public static UpdateRemoteClassCourseRequestTeachingParticipant build(java.util.Map map) throws Exception { UpdateRemoteClassCourseRequestTeachingParticipant self = new UpdateRemoteClassCourseRequestTeachingParticipant(); return TeaModel.build(map, self); } public UpdateRemoteClassCourseRequestTeachingParticipant setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public UpdateRemoteClassCourseRequestTeachingParticipant setParticipantId(String participantId) { this.participantId = participantId; return this; } public String getParticipantId() { return this.participantId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy