22 lines
766 B
Go
22 lines
766 B
Go
package qiniu
|
|
|
|
type MusicConvertNotifyParam struct {
|
|
Id string `json:"id"`
|
|
Pipeline string `json:"pipeline"`
|
|
Code int `json:"code"`
|
|
Desc string `json:"desc"`
|
|
Reqid string `json:"reqid"`
|
|
InputBucket string `json:"inputBucket"`
|
|
InputKey string `json:"inputKey"`
|
|
Items []MusicConvertNotifyParamItem `json:"items"`
|
|
}
|
|
|
|
type MusicConvertNotifyParamItem struct {
|
|
Cmd string `json:"cmd"`
|
|
Code int `json:"code"`
|
|
Desc string `json:"desc"`
|
|
Hash string `json:"hash"`
|
|
Key string `json:"key"`
|
|
ReturnOld int `json:"returnOld"`
|
|
}
|