All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkrooms_1_0.models.CreateMeetingRoomGroupRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy