com.aliyun.dingtalkrooms_1_0.models.CreateMeetingRoomGroupRequest 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.dingtalkrooms_1_0.models;
import com.aliyun.tea.*;
public class CreateMeetingRoomGroupRequest extends TeaModel {
/**
* example:
* 测试分组
*/
@NameInMap("groupName")
public String groupName;
/**
* This parameter is required.
*
* example:
* 172
*/
@NameInMap("parentGroupId")
public Long parentGroupId;
/**
* This parameter is required.
*
* example:
* 2iPOLbpUNMLzB5LuwggiiqiPwiEiE
*/
@NameInMap("unionId")
public String unionId;
public static CreateMeetingRoomGroupRequest build(java.util.Map map) throws Exception {
CreateMeetingRoomGroupRequest self = new CreateMeetingRoomGroupRequest();
return TeaModel.build(map, self);
}
public CreateMeetingRoomGroupRequest setGroupName(String groupName) {
this.groupName = groupName;
return this;
}
public String getGroupName() {
return this.groupName;
}
public CreateMeetingRoomGroupRequest setParentGroupId(Long parentGroupId) {
this.parentGroupId = parentGroupId;
return this;
}
public Long getParentGroupId() {
return this.parentGroupId;
}
public CreateMeetingRoomGroupRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}