com.aliyun.dingtalkservice_group_1_0.models.GetWordCloudRequest 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 GetWordCloudRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* KxisoOk
*/
@NameInMap("openTeamId")
public String openTeamId;
public static GetWordCloudRequest build(java.util.Map map) throws Exception {
GetWordCloudRequest self = new GetWordCloudRequest();
return TeaModel.build(map, self);
}
public GetWordCloudRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
}