com.aliyun.dingtalkindustry_1_0.models.ChatMemoFaqAddResponseBody 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 ChatMemoFaqAddResponseBody extends TeaModel {
/**
* example:
* xxxxx
*/
@NameInMap("bizId")
public String bizId;
/**
* example:
* aaaa.doc
*/
@NameInMap("mediaId")
public String mediaId;
public static ChatMemoFaqAddResponseBody build(java.util.Map map) throws Exception {
ChatMemoFaqAddResponseBody self = new ChatMemoFaqAddResponseBody();
return TeaModel.build(map, self);
}
public ChatMemoFaqAddResponseBody setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public ChatMemoFaqAddResponseBody setMediaId(String mediaId) {
this.mediaId = mediaId;
return this;
}
public String getMediaId() {
return this.mediaId;
}
}