3.8收藏夹对象
# 3.8 收藏夹对象
</br>
## 数据结构说明
| 字段 | 数据类型 | 释义 | 取值 | 取值释义 |
|---------------|----------|------------------------------------------|-------|---------------------|
| id | int | 目标对象id | 305 | |
| collectobject | Object | 收藏对象,示favoritetype的值确定对象结构 | | |
| collected | long | 收藏时间,毫秒时间值 | | |
| favoritetype | String | 收藏夹类型 | AUDIO | 音频收藏夹 |
| | | | VIDEO | 视频收藏夹 |
| | | | IMAGE | 图片收藏夹 |
</br>
## 返回结果json示例
~~~
输入:收藏正在播放的歌曲
输出:
{"rtext":"好的","synthetise":"","ttext":"","outc":"0","motions":[],
"actions":[
{"action":"QUERY",
"target":{"id":300,
"type":"AUDIO"},
"size":1,
"get":{"property":"object","type":"VALUE"}},
{"action":"INSERT",
"target":{ "id":305,
"collectobject":{ "id":300,
"type":"AUDIO"},
"collected":(收藏时间值long类型)}
}]
}
语义解释:
1.查询(QUERY)播放器对象的播放对象(id=300, "type":"AUDIO"),
2.执行(INSERT)插入动作,在收藏夹对象中插入音频对象,回复朗读(outc=0)。
~~~