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

com.aliyun.dingtalkedu_1_0.models.QueryAllSubjectsFromClassScheduleRequest 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 QueryAllSubjectsFromClassScheduleRequest extends TeaModel {
    @NameInMap("classIds")
    public java.util.List classIds;

    /**
     * 

This parameter is required.

* * example: *

34524523543

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

KINDERGARTEN

*/ @NameInMap("periodCode") public String periodCode; public static QueryAllSubjectsFromClassScheduleRequest build(java.util.Map map) throws Exception { QueryAllSubjectsFromClassScheduleRequest self = new QueryAllSubjectsFromClassScheduleRequest(); return TeaModel.build(map, self); } public QueryAllSubjectsFromClassScheduleRequest setClassIds(java.util.List classIds) { this.classIds = classIds; return this; } public java.util.List getClassIds() { return this.classIds; } public QueryAllSubjectsFromClassScheduleRequest setOpUserId(String opUserId) { this.opUserId = opUserId; return this; } public String getOpUserId() { return this.opUserId; } public QueryAllSubjectsFromClassScheduleRequest setPeriodCode(String periodCode) { this.periodCode = periodCode; return this; } public String getPeriodCode() { return this.periodCode; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy