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

com.aliyun.dingtalkedu_1_0.models.QueryClassScheduleByTimeSchoolRequest 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 QueryClassScheduleByTimeSchoolRequest extends TeaModel {
    /**
     * 

This parameter is required.

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

This parameter is required.

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

This parameter is required.

*/ @NameInMap("startTime") public Long startTime; public static QueryClassScheduleByTimeSchoolRequest build(java.util.Map map) throws Exception { QueryClassScheduleByTimeSchoolRequest self = new QueryClassScheduleByTimeSchoolRequest(); return TeaModel.build(map, self); } public QueryClassScheduleByTimeSchoolRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryClassScheduleByTimeSchoolRequest setOpUserId(String opUserId) { this.opUserId = opUserId; return this; } public String getOpUserId() { return this.opUserId; } public QueryClassScheduleByTimeSchoolRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy