com.aliyun.dingtalkassistant_1_0.models.GetDomainWordsRequest 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 GetDomainWordsRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("assistantId")
public String assistantId;
public static GetDomainWordsRequest build(java.util.Map map) throws Exception {
GetDomainWordsRequest self = new GetDomainWordsRequest();
return TeaModel.build(map, self);
}
public GetDomainWordsRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
}