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