com.aliyun.dingtalkhrm_1_0.models.UploadAttachmentRequest 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 UploadAttachmentRequest extends TeaModel {
/**
* example:
* @dsa8d87y7c8d8c
*/
@NameInMap("mediaId")
public String mediaId;
/**
* example:
* 16768800278994283
*/
@NameInMap("userId")
public String userId;
public static UploadAttachmentRequest build(java.util.Map map) throws Exception {
UploadAttachmentRequest self = new UploadAttachmentRequest();
return TeaModel.build(map, self);
}
public UploadAttachmentRequest setMediaId(String mediaId) {
this.mediaId = mediaId;
return this;
}
public String getMediaId() {
return this.mediaId;
}
public UploadAttachmentRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}