![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkindustry_1_0.models.ChatMemoAddGeneralFileResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class ChatMemoAddGeneralFileResponseBody extends TeaModel {
/**
* example:
* xxxxx
*/
@NameInMap("bizId")
public String bizId;
/**
* example:
* aaaa.doc
*/
@NameInMap("mediaId")
public String mediaId;
public static ChatMemoAddGeneralFileResponseBody build(java.util.Map map) throws Exception {
ChatMemoAddGeneralFileResponseBody self = new ChatMemoAddGeneralFileResponseBody();
return TeaModel.build(map, self);
}
public ChatMemoAddGeneralFileResponseBody setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public ChatMemoAddGeneralFileResponseBody setMediaId(String mediaId) {
this.mediaId = mediaId;
return this;
}
public String getMediaId() {
return this.mediaId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy