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

com.aliyun.dingtalkindustry_1_0.models.UpdateUserExtendInfoRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class UpdateUserExtendInfoRequest extends TeaModel {
    // comments
    @NameInMap("comments")
    public String comments;

    // 职称code
    @NameInMap("jobCode")
    public String jobCode;

    // 工作状态code
    @NameInMap("jobStatusCode")
    public java.util.List jobStatusCode;

    // 用户属性code
    @NameInMap("userProbCode")
    public String userProbCode;

    public static UpdateUserExtendInfoRequest build(java.util.Map map) throws Exception {
        UpdateUserExtendInfoRequest self = new UpdateUserExtendInfoRequest();
        return TeaModel.build(map, self);
    }

    public UpdateUserExtendInfoRequest setComments(String comments) {
        this.comments = comments;
        return this;
    }
    public String getComments() {
        return this.comments;
    }

    public UpdateUserExtendInfoRequest setJobCode(String jobCode) {
        this.jobCode = jobCode;
        return this;
    }
    public String getJobCode() {
        return this.jobCode;
    }

    public UpdateUserExtendInfoRequest setJobStatusCode(java.util.List jobStatusCode) {
        this.jobStatusCode = jobStatusCode;
        return this;
    }
    public java.util.List getJobStatusCode() {
        return this.jobStatusCode;
    }

    public UpdateUserExtendInfoRequest setUserProbCode(String userProbCode) {
        this.userProbCode = userProbCode;
        return this;
    }
    public String getUserProbCode() {
        return this.userProbCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy