view.go 785 B

12345678910111213141516171819202122232425262728
  1. package model
  2. import (
  3. "encoding/json"
  4. )
  5. // ViewDm .
  6. type ViewDm struct {
  7. Closed bool `json:"closed"`
  8. ViewDmSeg *ViewDmSeg `json:"dm_seg"` // 分段弹幕规则
  9. Flag json.RawMessage `json:"flag"` // flag
  10. Subtitle *ViewSubtitle `json:"subtitle,omitempty"` // 字幕
  11. ViewDmMask *Mask `json:"mask,omitempty"` // 蒙版
  12. SpecialDms []string `json:"special_dms,omitempty"` // 高级弹幕
  13. }
  14. // ViewDmSeg .
  15. type ViewDmSeg struct {
  16. PageSize int64 `json:"page_size"`
  17. Total int64 `json:"total"`
  18. }
  19. // ViewSubtitle .
  20. type ViewSubtitle struct {
  21. Lan string `json:"lan"`
  22. LanDoc string `json:"lan_doc"`
  23. Subtitles []*ViewVideoSubtitle `json:"subtitles"`
  24. }