
com.aliyun.dingtalkindustry_1_0.models.ChatMemoAddGeneralFileResponseBody 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 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