
com.aliyun.dingtalkedu_1_0.models.QueryRemoteClassCourseRequest 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 QueryRemoteClassCourseRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1635436800000
*/
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*
* example:
* manager1234
*/
@NameInMap("operator")
public String operator;
/**
* This parameter is required.
*
* example:
* 1634832000000
*/
@NameInMap("startTime")
public Long startTime;
public static QueryRemoteClassCourseRequest build(java.util.Map map) throws Exception {
QueryRemoteClassCourseRequest self = new QueryRemoteClassCourseRequest();
return TeaModel.build(map, self);
}
public QueryRemoteClassCourseRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryRemoteClassCourseRequest setOperator(String operator) {
this.operator = operator;
return this;
}
public String getOperator() {
return this.operator;
}
public QueryRemoteClassCourseRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy