- package response
- // BulletChatItem 弹幕响应体
- type BulletChatItem struct {
- Id int `json:"id" description:"弹幕ID"`
- Content string `json:"content" description:"弹幕内容"`
- UserId int `json:"user_id" description:"用户ID"`
- Color string `json:"color" description:"颜色"`
- Seconds string `json:"seconds" description:"时间点(秒)"`
- }
|