#  会议室配置概述
##  资源定义
会议室配置用于对飞书会议室的背景设置、资源管理等进行配置，包括：[查询会议室配置](https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_config/query)、[设置会议室配置](https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/reference/vc-v1/room_config/set)。

##  字段说明

名称 | 类型 | 描述
---|---|---
scope | int | 查询节点范围<br>**示例值**："5"<br>**可选值有**：<br>- `1`：租户<br>- `2`：国家/地区<br>- `3`：城市<br>- `4`：建筑<br>- `5`：楼层<br>- `6`：会议室
country_id | string | 国家/地区ID scope为2，3时需要此参数<br>**示例值**："086"
district_id | string | 城市ID scope为3时需要此参数<br>**示例值**："001"

building_id | string | 建筑ID scope为4，5时需要此参数<br>**示例值**："22"
floor_name | string | 楼层 scope为5时需要此参数<br>**示例值**："4"
room_id | string | 会议室ID scope为6时需要此参数<br>**示例值**："6383786266263"
code | int | 错误码，非 0 表示失败
msg | string | 错误描述

data | room_config | -
&emsp;∟&nbsp;room_background | string | 飞书会议室背景图
&emsp;∟&nbsp;display_background | string | 飞书签到板背景图
&emsp;∟&nbsp;digital_signage | room_digital_signage | 飞书会议室数字标牌
&emsp; ∟&nbsp;enable | boolean | 是否开启数字标牌功能
&emsp; ∟&nbsp;mute | boolean | 是否静音播放
&emsp; ∟&nbsp;start_display | int | 日程会议开始前n分钟结束播放
&emsp; ∟&nbsp;stop_display | int | 会议结束后n分钟开始播放
&emsp; ∟&nbsp;materials | room_digital_signage_material[] | 素材列表
&emsp;  ∟&nbsp;id | string | 素材ID
&emsp;  ∟&nbsp;name | string | 素材名称
&emsp;  ∟&nbsp;material_type | int | 素材类型<br>**可选值有**：<br>- `1`：图片<br>- `2`：视频<br>- `3`：GIF
&emsp;  ∟&nbsp;url | string | 素材url
&emsp;  ∟&nbsp;duration | int | 播放时长（单位sec）
&emsp;  ∟&nbsp;cover | string | 素材封面url
&emsp;  ∟&nbsp;md5 | string | 素材文件md5

###  数据示例
```json
{
    "scope":5,
    "country_id":"086",
    "district_id":"001",
    "building_id":"22",
    "floor_name":"4",
    "room_id":"6383786266263",
    "code":0,
    "msg":"success",
    "data": {
        "room_background": "https://lf1-ttcdn-tos.pstatp.com/obj/xxx",
        "display_background": "https://lf1-ttcdn-tos.pstatp.com/obj/xxx",
        "digital_signage": {
            "enable": true,
            "mute": true,
            "start_display": 3,
            "stop_display": 3,
            "materials": [
                {
                    "id": "7847784676276",
                    "name": "name",
                    "material_type": 0,
                    "url": "url",
                    "duration": 15,
                    "cover": "url",
                    "md5": "md5"
                }
            ]
        }
    }
}
```