com.aliyun.dingtalkedu_1_0.models.QueryTeachSubjectsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}