![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkedu_1_0.models.EduListUserByFromUserIdsRequest 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 EduListUserByFromUserIdsRequest extends TeaModel {
@NameInMap("classId")
public Long classId;
/**
* example:
* ding123456
*/
@NameInMap("corpId")
public String corpId;
/**
* example:
* 123456
*/
@NameInMap("guardianUserId")
public String guardianUserId;
public static EduListUserByFromUserIdsRequest build(java.util.Map map) throws Exception {
EduListUserByFromUserIdsRequest self = new EduListUserByFromUserIdsRequest();
return TeaModel.build(map, self);
}
public EduListUserByFromUserIdsRequest setClassId(Long classId) {
this.classId = classId;
return this;
}
public Long getClassId() {
return this.classId;
}
public EduListUserByFromUserIdsRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public EduListUserByFromUserIdsRequest setGuardianUserId(String guardianUserId) {
this.guardianUserId = guardianUserId;
return this;
}
public String getGuardianUserId() {
return this.guardianUserId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy