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

com.aliyun.dingtalkindustry_1_0.models.ChatMemoFaqAddRequest 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 ChatMemoFaqAddRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

办公室的电话是:13222333232

*/ @NameInMap("answer") public String answer; /** * example: *

aaaaa

*/ @NameInMap("bizId") public String bizId; /** *

This parameter is required.

* * example: *

111111

*/ @NameInMap("datasetId") public Long datasetId; /** *

This parameter is required.

* * example: *

办公室的电话是多少

*/ @NameInMap("question") public String question; /** * example: *

https://xxxxxxx.com/xxxxxx

*/ @NameInMap("redirection") public String redirection; public static ChatMemoFaqAddRequest build(java.util.Map map) throws Exception { ChatMemoFaqAddRequest self = new ChatMemoFaqAddRequest(); return TeaModel.build(map, self); } public ChatMemoFaqAddRequest setAnswer(String answer) { this.answer = answer; return this; } public String getAnswer() { return this.answer; } public ChatMemoFaqAddRequest setBizId(String bizId) { this.bizId = bizId; return this; } public String getBizId() { return this.bizId; } public ChatMemoFaqAddRequest setDatasetId(Long datasetId) { this.datasetId = datasetId; return this; } public Long getDatasetId() { return this.datasetId; } public ChatMemoFaqAddRequest setQuestion(String question) { this.question = question; return this; } public String getQuestion() { return this.question; } public ChatMemoFaqAddRequest setRedirection(String redirection) { this.redirection = redirection; return this; } public String getRedirection() { return this.redirection; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy