getConfig 接口
获取快捷键配置列表。
请求方式
POST/GET http://ip/V1.0/shortcuts/getConfig
请求数据
NULL
返回数据
{
"list": [
{
"functions": [
{
"id": 311,
"name": "PTZ move left"
},
{
"id": 29,
"name": "Wait for 500 ms"
},
{
"id": 317,
"name": "PTZ stop moving"
}
],
"id": 1725522037805,
"name": "Move Left"
},
{
"functions": [
{
"id": 315,
"name": "PTZ move right"
},
{
"id": 29,
"name": "Wait for 500 ms"
},
{
"id": 317,
"name": "PTZ stop moving"
}
],
"id": 1725524226309,
"name": "Move Right"
},
{
"functions": [
{
"id": 12,
"name": "Switch to the next scene"
}
],
"id": 1725525445613,
"name": "Next Scene"
}
],
"totalCount": 3,
"message": "SUCCESS",
"status": 0
}
参数 | 类型 | 说明 |
---|---|---|
status | Int | 业务状态码 0:成功 |
message | String | 业务状态描述 |
totalCount | Int | 快捷键总数 |
list | Array of ShortcutsInfo | 快捷键列表 |
ShortcutsInfo
参数 | 类型 | 说明 |
---|---|---|
id | Int | 快捷键唯一标识 |
name | String | 快捷键名称 |
functions | Array of FunctionInfo | 快捷键功能列表 |
FunctionInfo
参数 | 类型 | 说明 |
---|---|---|
id | Int | 功能唯一标识 |
name | String | 功能名称 |