com.aliyun.dingtalkedu_1_0.models.MoveStudentRequest 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 MoveStudentRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1234
*/
@NameInMap("operator")
public String operator;
/**
* This parameter is required.
*
* example:
* 2000
*/
@NameInMap("originClassId")
public Long originClassId;
/**
* This parameter is required.
*
* example:
* 2001
*/
@NameInMap("targetClassId")
public Long targetClassId;
/**
* This parameter is required.
*
* example:
* 1000
*/
@NameInMap("userId")
public String userId;
public static MoveStudentRequest build(java.util.Map map) throws Exception {
MoveStudentRequest self = new MoveStudentRequest();
return TeaModel.build(map, self);
}
public MoveStudentRequest setOperator(String operator) {
this.operator = operator;
return this;
}
public String getOperator() {
return this.operator;
}
public MoveStudentRequest setOriginClassId(Long originClassId) {
this.originClassId = originClassId;
return this;
}
public Long getOriginClassId() {
return this.originClassId;
}
public MoveStudentRequest setTargetClassId(Long targetClassId) {
this.targetClassId = targetClassId;
return this;
}
public Long getTargetClassId() {
return this.targetClassId;
}
public MoveStudentRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}