type Search struct {
Channel int `json:"channel"`
OnlyStatus int `json:"onlyStatus"`
StreamType string `json:"streamType"`
StartTime Time `json:"StartTime"`
EndTime Time `json:"EndTime"`
}
type SearchResultFile struct {
RawEndTime Time `json:"EndTime"`
RawStartTime Time `json:"StartTime"`
FrameRate int `json:"frameRate"`
Height int `json:"height"`
Name string `json:"name"`
Size int `json:"size"`
Type string `json:"type"`
Width int `json:"width"`
}
type Time struct {
Day int `json:"day"`
Hour int `json:"hour"`
Minute int `json:"min"`
Month int `json:"mon"`
Second int `json:"sec"`
Year int `json:"year"`
}