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

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

    /**
     * 

This parameter is required.

* * example: *

24275037451244334

*/ @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