type Result struct {
Type string `json:"type"`
Title string `json:"title"`
VideoID string `json:"videoId"`
Author string `json:"author"`
PublishedText string `json:"publishedText"`
LengthSeconds int `json:"lengthSeconds"`
ViewCount int `json:"viewCount"`
}
type Video struct {
Title string `json:"title"`
VideoId string `json:"videoId"`
Description string `json:"description"`
Views int `json:"viewCount"`
Likes int `json:"likeCount"`
Dislikes int `json:"dislikeCount"`
Author string `json:"author"`
AuthorId string `json:"authorId"`
LengthSeconds int `json:"lengthSeconds"`
PublishedText string `json:"publishedText"`
}