All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.UpdateCollegeContactUserRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class UpdateCollegeContactUserRequest extends TeaModel {
    @NameInMap("deptIdList")
    public java.util.List deptIdList;

    @NameInMap("deptOrderList")
    public java.util.List deptOrderList;

    @NameInMap("deptTitleList")
    public java.util.List deptTitleList;

    /**
     * example:
     * 

[email protected]

*/ @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: *

123456

*/ @NameInMap("mainDeptId") public Long mainDeptId; /** * example: *

001

*/ @NameInMap("managerUserid") public String managerUserid; /** * example: *

张三

*/ @NameInMap("name") public String name; /** * example: *

[email protected]

*/ @NameInMap("orgEmail") public String orgEmail; /** * 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 UpdateCollegeContactUserRequest build(java.util.Map map) throws Exception { UpdateCollegeContactUserRequest self = new UpdateCollegeContactUserRequest(); return TeaModel.build(map, self); } public UpdateCollegeContactUserRequest setDeptIdList(java.util.List deptIdList) { this.deptIdList = deptIdList; return this; } public java.util.List getDeptIdList() { return this.deptIdList; } public UpdateCollegeContactUserRequest setDeptOrderList(java.util.List deptOrderList) { this.deptOrderList = deptOrderList; return this; } public java.util.List getDeptOrderList() { return this.deptOrderList; } public UpdateCollegeContactUserRequest setDeptTitleList(java.util.List deptTitleList) { this.deptTitleList = deptTitleList; return this; } public java.util.List getDeptTitleList() { return this.deptTitleList; } public UpdateCollegeContactUserRequest setEmail(String email) { this.email = email; return this; } public String getEmail() { return this.email; } public UpdateCollegeContactUserRequest setEmpType(String empType) { this.empType = empType; return this; } public String getEmpType() { return this.empType; } public UpdateCollegeContactUserRequest setExtension(java.util.Map extension) { this.extension = extension; return this; } public java.util.Map getExtension() { return this.extension; } public UpdateCollegeContactUserRequest setForceUpdateFields(String forceUpdateFields) { this.forceUpdateFields = forceUpdateFields; return this; } public String getForceUpdateFields() { return this.forceUpdateFields; } public UpdateCollegeContactUserRequest setHideMobile(Boolean hideMobile) { this.hideMobile = hideMobile; return this; } public Boolean getHideMobile() { return this.hideMobile; } public UpdateCollegeContactUserRequest setHiredDate(Long hiredDate) { this.hiredDate = hiredDate; return this; } public Long getHiredDate() { return this.hiredDate; } public UpdateCollegeContactUserRequest setJobNumber(String jobNumber) { this.jobNumber = jobNumber; return this; } public String getJobNumber() { return this.jobNumber; } public UpdateCollegeContactUserRequest setLanguage(String language) { this.language = language; return this; } public String getLanguage() { return this.language; } public UpdateCollegeContactUserRequest setMainDeptId(Long mainDeptId) { this.mainDeptId = mainDeptId; return this; } public Long getMainDeptId() { return this.mainDeptId; } public UpdateCollegeContactUserRequest setManagerUserid(String managerUserid) { this.managerUserid = managerUserid; return this; } public String getManagerUserid() { return this.managerUserid; } public UpdateCollegeContactUserRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public UpdateCollegeContactUserRequest setOrgEmail(String orgEmail) { this.orgEmail = orgEmail; return this; } public String getOrgEmail() { return this.orgEmail; } public UpdateCollegeContactUserRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public UpdateCollegeContactUserRequest setSeniorMode(Boolean seniorMode) { this.seniorMode = seniorMode; return this; } public Boolean getSeniorMode() { return this.seniorMode; } public UpdateCollegeContactUserRequest setTelephone(String telephone) { this.telephone = telephone; return this; } public String getTelephone() { return this.telephone; } public UpdateCollegeContactUserRequest setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } public UpdateCollegeContactUserRequest setUserid(String userid) { this.userid = userid; return this; } public String getUserid() { return this.userid; } public UpdateCollegeContactUserRequest setWorkPlace(String workPlace) { this.workPlace = workPlace; return this; } public String getWorkPlace() { return this.workPlace; } public static class UpdateCollegeContactUserRequestDeptOrderList extends TeaModel { /** * example: *

123456

*/ @NameInMap("deptId") public Long deptId; /** * example: *

1

*/ @NameInMap("order") public Integer order; public static UpdateCollegeContactUserRequestDeptOrderList build(java.util.Map map) throws Exception { UpdateCollegeContactUserRequestDeptOrderList self = new UpdateCollegeContactUserRequestDeptOrderList(); return TeaModel.build(map, self); } public UpdateCollegeContactUserRequestDeptOrderList setDeptId(Long deptId) { this.deptId = deptId; return this; } public Long getDeptId() { return this.deptId; } public UpdateCollegeContactUserRequestDeptOrderList setOrder(Integer order) { this.order = order; return this; } public Integer getOrder() { return this.order; } } public static class UpdateCollegeContactUserRequestDeptTitleList extends TeaModel { /** * example: *

123456

*/ @NameInMap("deptId") public Long deptId; /** * example: *

学工处处长

*/ @NameInMap("title") public String title; public static UpdateCollegeContactUserRequestDeptTitleList build(java.util.Map map) throws Exception { UpdateCollegeContactUserRequestDeptTitleList self = new UpdateCollegeContactUserRequestDeptTitleList(); return TeaModel.build(map, self); } public UpdateCollegeContactUserRequestDeptTitleList setDeptId(Long deptId) { this.deptId = deptId; return this; } public Long getDeptId() { return this.deptId; } public UpdateCollegeContactUserRequestDeptTitleList setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy