com.aliyun.dingtalkassistant_1_0.models.DeleteDomainWordsRequest 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.dingtalkassistant_1_0.models;
import com.aliyun.tea.*;
public class DeleteDomainWordsRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("assistantId")
public String assistantId;
/**
* This parameter is required.
*/
@NameInMap("domainWords")
public java.util.List domainWords;
public static DeleteDomainWordsRequest build(java.util.Map map) throws Exception {
DeleteDomainWordsRequest self = new DeleteDomainWordsRequest();
return TeaModel.build(map, self);
}
public DeleteDomainWordsRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
public DeleteDomainWordsRequest setDomainWords(java.util.List domainWords) {
this.domainWords = domainWords;
return this;
}
public java.util.List getDomainWords() {
return this.domainWords;
}
public static class DeleteDomainWordsRequestDomainWords extends TeaModel {
@NameInMap("description")
public String description;
@NameInMap("domainWord")
public String domainWord;
@NameInMap("formalWords")
public java.util.List formalWords;
public static DeleteDomainWordsRequestDomainWords build(java.util.Map map) throws Exception {
DeleteDomainWordsRequestDomainWords self = new DeleteDomainWordsRequestDomainWords();
return TeaModel.build(map, self);
}
public DeleteDomainWordsRequestDomainWords setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public DeleteDomainWordsRequestDomainWords setDomainWord(String domainWord) {
this.domainWord = domainWord;
return this;
}
public String getDomainWord() {
return this.domainWord;
}
public DeleteDomainWordsRequestDomainWords setFormalWords(java.util.List formalWords) {
this.formalWords = formalWords;
return this;
}
public java.util.List getFormalWords() {
return this.formalWords;
}
}
}