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.67
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 {
    /**
     * 

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy