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

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

There is a newer version: 2.1.30
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 QueryStatisticsDataRequest extends TeaModel {
    // 课程节次列表
    @NameInMap("sectionIndexList")
    public java.util.List sectionIndexList;

    // 老师UserIds
    @NameInMap("teacherUserIds")
    public java.util.List teacherUserIds;

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

    // opUserId
    @NameInMap("opUserId")
    public String opUserId;

    // startTime
    @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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy