Class: YouTubeG::Model::Comment
- Defined in:
- lib/youtube_g/model/comment.rb
Instance Attribute Summary collapse
-
#author ⇒ Object
readonly
- YouTubeG::Model::Author
-
Information about the YouTube user who owns a piece of video content.
-
#content ⇒ Object
readonly
- String
-
Description of the video.
-
#published_at ⇒ Object
readonly
- Time
-
When the video was published on Youtube.
-
#title ⇒ Object
readonly
- String
-
Title for the video.
-
#updated_at ⇒ Object
readonly
- Time
-
When the video’s data was last updated.
Method Summary
Methods inherited from Record
Constructor Details
This class inherits a constructor from YouTubeG::Record
Instance Attribute Details
#author ⇒ Object (readonly)
- YouTubeG::Model::Author
-
Information about the YouTube user who owns a piece of video content.
17 18 19 |
# File 'lib/youtube_g/model/comment.rb', line 17 def @author end |
#content ⇒ Object (readonly)
- String
-
Description of the video.
14 15 16 |
# File 'lib/youtube_g/model/comment.rb', line 14 def content @content end |
#published_at ⇒ Object (readonly)
- Time
-
When the video was published on Youtube.
5 6 7 |
# File 'lib/youtube_g/model/comment.rb', line 5 def published_at @published_at end |
#title ⇒ Object (readonly)
- String
-
Title for the video.
11 12 13 |
# File 'lib/youtube_g/model/comment.rb', line 11 def title @title end |
#updated_at ⇒ Object (readonly)
- Time
-
When the video’s data was last updated.
8 9 10 |
# File 'lib/youtube_g/model/comment.rb', line 8 def updated_at @updated_at end |