Class: YouTube::SearchResult
- Defined in:
- lib/you_tube/objects/search_result.rb
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ SearchResult
constructor
A new instance of SearchResult.
Methods inherited from Object
Constructor Details
#initialize(options = {}) ⇒ SearchResult
Returns a new instance of SearchResult.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/you_tube/objects/search_result.rb', line 4 def initialize( = {}) super if ["id"] self.video_id = ["id"]["videoId"] || nil self.playlist_id = ["id"]["playlistId"] || nil end if ["snippet"] self.title = ["snippet"]["title"] self.description = ["snippet"]["description"] self.published_at = ["snippet"]["publishedAt"] self.channel_id = ["snippet"]["channelId"] if ["snippet"]["thumbnails"] thumb = ["snippet"]["thumbnails"] self.thumbnail_default = thumb["default"]["url"] if thumb["default"] self.thumbnail_medium = thumb["medium"]["url"] if thumb["medium"] self.thumbnail_high = thumb["high"]["url"] if thumb["high"] self.thumbnail_standard = thumb["standard"]["url"] if thumb["standard"] self.thumbnail_maxres = thumb["maxres"]["url"] if thumb["maxres"] end end end |