com.aliyun.dingtalkindustry_1_0.models.ChatMemoFaqDeleteRequest 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 ChatMemoFaqDeleteRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 111111
*/
@NameInMap("datasetId")
public Long datasetId;
/**
* This parameter is required.
*
* example:
* aaaa
*/
@NameInMap("mediaId")
public String mediaId;
public static ChatMemoFaqDeleteRequest build(java.util.Map map) throws Exception {
ChatMemoFaqDeleteRequest self = new ChatMemoFaqDeleteRequest();
return TeaModel.build(map, self);
}
public ChatMemoFaqDeleteRequest setDatasetId(Long datasetId) {
this.datasetId = datasetId;
return this;
}
public Long getDatasetId() {
return this.datasetId;
}
public ChatMemoFaqDeleteRequest setMediaId(String mediaId) {
this.mediaId = mediaId;
return this;
}
public String getMediaId() {
return this.mediaId;
}
}