com.aliyun.dingtalkservice_group_1_0.models.GetWordCloudResponseBody 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class GetWordCloudResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("words")
public java.util.List words;
public static GetWordCloudResponseBody build(java.util.Map map) throws Exception {
GetWordCloudResponseBody self = new GetWordCloudResponseBody();
return TeaModel.build(map, self);
}
public GetWordCloudResponseBody setWords(java.util.List words) {
this.words = words;
return this;
}
public java.util.List getWords() {
return this.words;
}
public static class GetWordCloudResponseBodyWords extends TeaModel {
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("count")
public Long count;
/**
* This parameter is required.
*
* example:
* 销售
*/
@NameInMap("word")
public String word;
public static GetWordCloudResponseBodyWords build(java.util.Map map) throws Exception {
GetWordCloudResponseBodyWords self = new GetWordCloudResponseBodyWords();
return TeaModel.build(map, self);
}
public GetWordCloudResponseBodyWords setCount(Long count) {
this.count = count;
return this;
}
public Long getCount() {
return this.count;
}
public GetWordCloudResponseBodyWords setWord(String word) {
this.word = word;
return this;
}
public String getWord() {
return this.word;
}
}
}