com.aliyun.dingtalkindustry_1_0.models.CollegeUpdateStudentInfoRequest 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 CollegeUpdateStudentInfoRequest extends TeaModel {
/**
* example:
* "city":"beijing"
*/
@NameInMap("empExtension")
public java.util.Map empExtension;
/**
* example:
* male
*/
@NameInMap("gender")
public String gender;
/**
* example:
* 11019xxxxxx0001
*/
@NameInMap("identifyId")
public String identifyId;
/**
* example:
* 2015
*/
@NameInMap("startYear")
public String startYear;
/**
* This parameter is required.
*
* example:
* 1111111
*/
@NameInMap("studentId")
public Long studentId;
/**
* example:
* 张三
*/
@NameInMap("studentName")
public String studentName;
public static CollegeUpdateStudentInfoRequest build(java.util.Map map) throws Exception {
CollegeUpdateStudentInfoRequest self = new CollegeUpdateStudentInfoRequest();
return TeaModel.build(map, self);
}
public CollegeUpdateStudentInfoRequest setEmpExtension(java.util.Map empExtension) {
this.empExtension = empExtension;
return this;
}
public java.util.Map getEmpExtension() {
return this.empExtension;
}
public CollegeUpdateStudentInfoRequest setGender(String gender) {
this.gender = gender;
return this;
}
public String getGender() {
return this.gender;
}
public CollegeUpdateStudentInfoRequest setIdentifyId(String identifyId) {
this.identifyId = identifyId;
return this;
}
public String getIdentifyId() {
return this.identifyId;
}
public CollegeUpdateStudentInfoRequest setStartYear(String startYear) {
this.startYear = startYear;
return this;
}
public String getStartYear() {
return this.startYear;
}
public CollegeUpdateStudentInfoRequest setStudentId(Long studentId) {
this.studentId = studentId;
return this;
}
public Long getStudentId() {
return this.studentId;
}
public CollegeUpdateStudentInfoRequest setStudentName(String studentName) {
this.studentName = studentName;
return this;
}
public String getStudentName() {
return this.studentName;
}
}