![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.CollegeUpdateStudentMoblieRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CollegeUpdateStudentMoblieRequest extends TeaModel {
@NameInMap("isForce")
public Boolean isForce;
/**
* This parameter is required.
*
* example:
* 187xxxxxxxx
*/
@NameInMap("newMobile")
public String newMobile;
/**
* This parameter is required.
*
* example:
* 222222
*/
@NameInMap("studentId")
public Long studentId;
public static CollegeUpdateStudentMoblieRequest build(java.util.Map map) throws Exception {
CollegeUpdateStudentMoblieRequest self = new CollegeUpdateStudentMoblieRequest();
return TeaModel.build(map, self);
}
public CollegeUpdateStudentMoblieRequest setIsForce(Boolean isForce) {
this.isForce = isForce;
return this;
}
public Boolean getIsForce() {
return this.isForce;
}
public CollegeUpdateStudentMoblieRequest setNewMobile(String newMobile) {
this.newMobile = newMobile;
return this;
}
public String getNewMobile() {
return this.newMobile;
}
public CollegeUpdateStudentMoblieRequest setStudentId(Long studentId) {
this.studentId = studentId;
return this;
}
public Long getStudentId() {
return this.studentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy