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

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

    // 操作者UserId
    @NameInMap("opUserId")
    public String opUserId;

    public static QueryTeachSubjectsRequest build(java.util.Map map) throws Exception {
        QueryTeachSubjectsRequest self = new QueryTeachSubjectsRequest();
        return TeaModel.build(map, self);
    }

    public QueryTeachSubjectsRequest setClassIds(java.util.List classIds) {
        this.classIds = classIds;
        return this;
    }
    public java.util.List getClassIds() {
        return this.classIds;
    }

    public QueryTeachSubjectsRequest setOpUserId(String opUserId) {
        this.opUserId = opUserId;
        return this;
    }
    public String getOpUserId() {
        return this.opUserId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy