com.aliyun.dingtalkedu_1_0.models.QueryStatisticsDataRequest 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 QueryStatisticsDataRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("sectionIndexList")
public java.util.List sectionIndexList;
/**
* This parameter is required.
*/
@NameInMap("teacherUserIds")
public java.util.List teacherUserIds;
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*/
@NameInMap("opUserId")
public String opUserId;
@NameInMap("startTime")
public Long startTime;
public static QueryStatisticsDataRequest build(java.util.Map map) throws Exception {
QueryStatisticsDataRequest self = new QueryStatisticsDataRequest();
return TeaModel.build(map, self);
}
public QueryStatisticsDataRequest setSectionIndexList(java.util.List sectionIndexList) {
this.sectionIndexList = sectionIndexList;
return this;
}
public java.util.List getSectionIndexList() {
return this.sectionIndexList;
}
public QueryStatisticsDataRequest setTeacherUserIds(java.util.List teacherUserIds) {
this.teacherUserIds = teacherUserIds;
return this;
}
public java.util.List getTeacherUserIds() {
return this.teacherUserIds;
}
public QueryStatisticsDataRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryStatisticsDataRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
public QueryStatisticsDataRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
}