All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkindustry_1_0.models.ChatMemoFaqDeleteRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy