![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkedu_1_0.models.UpdateCollegeContactExclusiveRequest 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 UpdateCollegeContactExclusiveRequest extends TeaModel {
/**
* example:
* @lALPDfmVUw19YdrNA-jNA-g
*/
@NameInMap("avatarMediaId")
public String avatarMediaId;
@NameInMap("deptIdList")
public java.util.List deptIdList;
@NameInMap("deptOrderList")
public java.util.List deptOrderList;
@NameInMap("deptTitleList")
public java.util.List deptTitleList;
/**
* example:
*
*/
@NameInMap("email")
public String email;
/**
* example:
* college_student
*/
@NameInMap("empType")
public String empType;
@NameInMap("extension")
public java.util.Map extension;
/**
* example:
* manager_userid
*/
@NameInMap("forceUpdateFields")
public String forceUpdateFields;
@NameInMap("hideMobile")
public Boolean hideMobile;
/**
* example:
* 1597573616828
*/
@NameInMap("hiredDate")
public Long hiredDate;
/**
* example:
* 666666
*/
@NameInMap("jobNumber")
public String jobNumber;
/**
* example:
* zh_CN
*/
@NameInMap("language")
public String language;
/**
* example:
* studentNo
*/
@NameInMap("loginIdType")
public String loginIdType;
/**
* example:
* 123456
*/
@NameInMap("mainDeptId")
public Long mainDeptId;
/**
* example:
* 001
*/
@NameInMap("managerUserid")
public String managerUserid;
/**
* example:
* 185xxxx8888
*/
@NameInMap("mobile")
public String mobile;
/**
* example:
* 张三
*/
@NameInMap("name")
public String name;
/**
* example:
* 昵称
*/
@NameInMap("nickname")
public String nickname;
/**
* example:
*
*/
@NameInMap("orgEmail")
public String orgEmail;
/**
* example:
* profession
*/
@NameInMap("orgEmailType")
public String orgEmailType;
/**
* example:
* 备注
*/
@NameInMap("remark")
public String remark;
@NameInMap("seniorMode")
public Boolean seniorMode;
/**
* example:
* 010-86123456-2345
*/
@NameInMap("telephone")
public String telephone;
/**
* example:
* 学生会主席
*/
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
* zhangsan666
*/
@NameInMap("userid")
public String userid;
/**
* example:
* 阿里巴巴c区
*/
@NameInMap("workPlace")
public String workPlace;
public static UpdateCollegeContactExclusiveRequest build(java.util.Map map) throws Exception {
UpdateCollegeContactExclusiveRequest self = new UpdateCollegeContactExclusiveRequest();
return TeaModel.build(map, self);
}
public UpdateCollegeContactExclusiveRequest setAvatarMediaId(String avatarMediaId) {
this.avatarMediaId = avatarMediaId;
return this;
}
public String getAvatarMediaId() {
return this.avatarMediaId;
}
public UpdateCollegeContactExclusiveRequest setDeptIdList(java.util.List deptIdList) {
this.deptIdList = deptIdList;
return this;
}
public java.util.List getDeptIdList() {
return this.deptIdList;
}
public UpdateCollegeContactExclusiveRequest setDeptOrderList(java.util.List deptOrderList) {
this.deptOrderList = deptOrderList;
return this;
}
public java.util.List getDeptOrderList() {
return this.deptOrderList;
}
public UpdateCollegeContactExclusiveRequest setDeptTitleList(java.util.List deptTitleList) {
this.deptTitleList = deptTitleList;
return this;
}
public java.util.List getDeptTitleList() {
return this.deptTitleList;
}
public UpdateCollegeContactExclusiveRequest setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public UpdateCollegeContactExclusiveRequest setEmpType(String empType) {
this.empType = empType;
return this;
}
public String getEmpType() {
return this.empType;
}
public UpdateCollegeContactExclusiveRequest setExtension(java.util.Map extension) {
this.extension = extension;
return this;
}
public java.util.Map getExtension() {
return this.extension;
}
public UpdateCollegeContactExclusiveRequest setForceUpdateFields(String forceUpdateFields) {
this.forceUpdateFields = forceUpdateFields;
return this;
}
public String getForceUpdateFields() {
return this.forceUpdateFields;
}
public UpdateCollegeContactExclusiveRequest setHideMobile(Boolean hideMobile) {
this.hideMobile = hideMobile;
return this;
}
public Boolean getHideMobile() {
return this.hideMobile;
}
public UpdateCollegeContactExclusiveRequest setHiredDate(Long hiredDate) {
this.hiredDate = hiredDate;
return this;
}
public Long getHiredDate() {
return this.hiredDate;
}
public UpdateCollegeContactExclusiveRequest setJobNumber(String jobNumber) {
this.jobNumber = jobNumber;
return this;
}
public String getJobNumber() {
return this.jobNumber;
}
public UpdateCollegeContactExclusiveRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public UpdateCollegeContactExclusiveRequest setLoginIdType(String loginIdType) {
this.loginIdType = loginIdType;
return this;
}
public String getLoginIdType() {
return this.loginIdType;
}
public UpdateCollegeContactExclusiveRequest setMainDeptId(Long mainDeptId) {
this.mainDeptId = mainDeptId;
return this;
}
public Long getMainDeptId() {
return this.mainDeptId;
}
public UpdateCollegeContactExclusiveRequest setManagerUserid(String managerUserid) {
this.managerUserid = managerUserid;
return this;
}
public String getManagerUserid() {
return this.managerUserid;
}
public UpdateCollegeContactExclusiveRequest setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
public UpdateCollegeContactExclusiveRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateCollegeContactExclusiveRequest setNickname(String nickname) {
this.nickname = nickname;
return this;
}
public String getNickname() {
return this.nickname;
}
public UpdateCollegeContactExclusiveRequest setOrgEmail(String orgEmail) {
this.orgEmail = orgEmail;
return this;
}
public String getOrgEmail() {
return this.orgEmail;
}
public UpdateCollegeContactExclusiveRequest setOrgEmailType(String orgEmailType) {
this.orgEmailType = orgEmailType;
return this;
}
public String getOrgEmailType() {
return this.orgEmailType;
}
public UpdateCollegeContactExclusiveRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public UpdateCollegeContactExclusiveRequest setSeniorMode(Boolean seniorMode) {
this.seniorMode = seniorMode;
return this;
}
public Boolean getSeniorMode() {
return this.seniorMode;
}
public UpdateCollegeContactExclusiveRequest setTelephone(String telephone) {
this.telephone = telephone;
return this;
}
public String getTelephone() {
return this.telephone;
}
public UpdateCollegeContactExclusiveRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public UpdateCollegeContactExclusiveRequest setUserid(String userid) {
this.userid = userid;
return this;
}
public String getUserid() {
return this.userid;
}
public UpdateCollegeContactExclusiveRequest setWorkPlace(String workPlace) {
this.workPlace = workPlace;
return this;
}
public String getWorkPlace() {
return this.workPlace;
}
public static class UpdateCollegeContactExclusiveRequestDeptOrderList extends TeaModel {
/**
* example:
* 123456
*/
@NameInMap("deptId")
public Long deptId;
/**
* example:
* 1
*/
@NameInMap("order")
public Integer order;
public static UpdateCollegeContactExclusiveRequestDeptOrderList build(java.util.Map map) throws Exception {
UpdateCollegeContactExclusiveRequestDeptOrderList self = new UpdateCollegeContactExclusiveRequestDeptOrderList();
return TeaModel.build(map, self);
}
public UpdateCollegeContactExclusiveRequestDeptOrderList setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public UpdateCollegeContactExclusiveRequestDeptOrderList setOrder(Integer order) {
this.order = order;
return this;
}
public Integer getOrder() {
return this.order;
}
}
public static class UpdateCollegeContactExclusiveRequestDeptTitleList extends TeaModel {
/**
* example:
* 123456
*/
@NameInMap("deptId")
public Long deptId;
/**
* example:
* 学工处处长
*/
@NameInMap("title")
public String title;
public static UpdateCollegeContactExclusiveRequestDeptTitleList build(java.util.Map map) throws Exception {
UpdateCollegeContactExclusiveRequestDeptTitleList self = new UpdateCollegeContactExclusiveRequestDeptTitleList();
return TeaModel.build(map, self);
}
public UpdateCollegeContactExclusiveRequestDeptTitleList setDeptId(Long deptId) {
this.deptId = deptId;
return this;
}
public Long getDeptId() {
return this.deptId;
}
public UpdateCollegeContactExclusiveRequestDeptTitleList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy