You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
473 B
16 lines
473 B
package model |
|
|
|
import ( |
|
"encoding/json" |
|
) |
|
|
|
// StreamingNotifyParam 开/关播回调请求参数 |
|
type StreamingNotifyParam struct { |
|
StreamName string `json:"stream_name,omitempty"` |
|
Key string `json:"key,omitempty"` |
|
SRC string `json:"src,omitempty"` |
|
Type json.Number `json:"type,omitempty"` |
|
TS json.Number `json:"ts,omitempty"` |
|
SUID string `json:"suid,omitempty"` |
|
Sign string `json:"sign,omitempty"` |
|
}
|
|
|