notify.go 473 B

12345678910111213141516
  1. package model
  2. import (
  3. "encoding/json"
  4. )
  5. // StreamingNotifyParam 开/关播回调请求参数
  6. type StreamingNotifyParam struct {
  7. StreamName string `json:"stream_name,omitempty"`
  8. Key string `json:"key,omitempty"`
  9. SRC string `json:"src,omitempty"`
  10. Type json.Number `json:"type,omitempty"`
  11. TS json.Number `json:"ts,omitempty"`
  12. SUID string `json:"suid,omitempty"`
  13. Sign string `json:"sign,omitempty"`
  14. }