![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkh3yun_1_0.models.GetAttachmentTemporaryUrlRequest 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.dingtalkh3yun_1_0.models;
import com.aliyun.tea.*;
public class GetAttachmentTemporaryUrlRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 006f870b-4d1c-4cd0-85b3-2e866798e947
*/
@NameInMap("attachmentId")
public String attachmentId;
public static GetAttachmentTemporaryUrlRequest build(java.util.Map map) throws Exception {
GetAttachmentTemporaryUrlRequest self = new GetAttachmentTemporaryUrlRequest();
return TeaModel.build(map, self);
}
public GetAttachmentTemporaryUrlRequest setAttachmentId(String attachmentId) {
this.attachmentId = attachmentId;
return this;
}
public String getAttachmentId() {
return this.attachmentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy