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

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

// 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 {
    /**
     * 

This parameter is required.

* * example: *

备注, 当jobStatusCode为其他(0)时, 需要通过该字段补充状态

*/ @NameInMap("comments") public String comments; /** *

This parameter is required.

* * example: *

1

*/ @NameInMap("jobCode") public String jobCode; @NameInMap("jobStatusCode") public java.util.List jobStatusCode; /** *

This parameter is required.

* * example: *

1

*/ @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 - 2025 Weber Informatics LLC | Privacy Policy