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