bullet_chat.go 364 B

12345678910
  1. package response
  2. // BulletChatItem 弹幕响应体
  3. type BulletChatItem struct {
  4. Id int `json:"id" description:"弹幕ID"`
  5. Content string `json:"content" description:"弹幕内容"`
  6. UserId int `json:"user_id" description:"用户ID"`
  7. Color string `json:"color" description:"颜色"`
  8. Seconds string `json:"seconds" description:"时间点(秒)"`
  9. }