![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrm_1_0.models.EmployeeAttachmentUpdateRequest 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class EmployeeAttachmentUpdateRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("appAgentId")
public Long appAgentId;
/**
* This parameter is required.
*/
@NameInMap("fieldCode")
public String fieldCode;
/**
* example:
* .png
*/
@NameInMap("fileSuffix")
public String fileSuffix;
/**
* This parameter is required.
*
* example:
* "$iAEKAqNwbmcDBgTNAk"
*/
@NameInMap("mediaId")
public String mediaId;
/**
* This parameter is required.
*
* example:
* admin123
*/
@NameInMap("userId")
public String userId;
public static EmployeeAttachmentUpdateRequest build(java.util.Map map) throws Exception {
EmployeeAttachmentUpdateRequest self = new EmployeeAttachmentUpdateRequest();
return TeaModel.build(map, self);
}
public EmployeeAttachmentUpdateRequest setAppAgentId(Long appAgentId) {
this.appAgentId = appAgentId;
return this;
}
public Long getAppAgentId() {
return this.appAgentId;
}
public EmployeeAttachmentUpdateRequest setFieldCode(String fieldCode) {
this.fieldCode = fieldCode;
return this;
}
public String getFieldCode() {
return this.fieldCode;
}
public EmployeeAttachmentUpdateRequest setFileSuffix(String fileSuffix) {
this.fileSuffix = fileSuffix;
return this;
}
public String getFileSuffix() {
return this.fileSuffix;
}
public EmployeeAttachmentUpdateRequest setMediaId(String mediaId) {
this.mediaId = mediaId;
return this;
}
public String getMediaId() {
return this.mediaId;
}
public EmployeeAttachmentUpdateRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy