Add 'thumbnail_id' to playlists

This commit is contained in:
Omar Roth
2019-03-17 09:00:00 -05:00
parent 405e98f429
commit 99aa214859
4 changed files with 48 additions and 11 deletions

View File

@@ -25,12 +25,13 @@ end
class SearchPlaylist
add_mapping({
title: String,
id: String,
author: String,
ucid: String,
video_count: Int32,
videos: Array(SearchPlaylistVideo),
title: String,
id: String,
author: String,
ucid: String,
video_count: Int32,
videos: Array(SearchPlaylistVideo),
thumbnail_id: String?,
})
end