![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkedu_1_0.models.QueryClassScheduleConfigRequest 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 QueryClassScheduleConfigRequest extends TeaModel {
@NameInMap("classIds")
public java.util.List classIds;
/**
* This parameter is required.
*
* example:
* 2534522534
*/
@NameInMap("opUserId")
public String opUserId;
public static QueryClassScheduleConfigRequest build(java.util.Map map) throws Exception {
QueryClassScheduleConfigRequest self = new QueryClassScheduleConfigRequest();
return TeaModel.build(map, self);
}
public QueryClassScheduleConfigRequest setClassIds(java.util.List classIds) {
this.classIds = classIds;
return this;
}
public java.util.List getClassIds() {
return this.classIds;
}
public QueryClassScheduleConfigRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy