com.aliyun.dingtalkcontact_1_0.models.CreateManagementGroupResponseBody 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class CreateManagementGroupResponseBody extends TeaModel {
// 返回管理组groupId
@NameInMap("groupId")
public String groupId;
public static CreateManagementGroupResponseBody build(java.util.Map map) throws Exception {
CreateManagementGroupResponseBody self = new CreateManagementGroupResponseBody();
return TeaModel.build(map, self);
}
public CreateManagementGroupResponseBody setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
}