Class: Yt::Models::CommentThread
- Defined in:
- lib/yt/models/comment_thread.rb
Overview
Provides methods to interact with YouTube channels.
Instance Attribute Summary collapse
-
#total_reply_count ⇒ String
readonly
in response to the top-level comment.
-
#video_id ⇒ String
readonly
any.
Attributes inherited from Resource
Instance Method Summary collapse
-
#can_reply? ⇒ Boolean
Whether the current viewer can reply to the thread.
-
#public? ⇒ Boolean
comment replies, is visible to all YouTube users.
Methods inherited from Resource
Instance Attribute Details
#total_reply_count ⇒ String (readonly)
in response to the top-level comment.
20 |
# File 'lib/yt/models/comment_thread.rb', line 20 delegate :total_reply_count, to: :snippet |
#video_id ⇒ String (readonly)
any. If this property is not present or does not have a value, then the thread applies to the channel and not to a specific video.
15 |
# File 'lib/yt/models/comment_thread.rb', line 15 delegate :video_id, to: :snippet |
Instance Method Details
#can_reply? ⇒ Boolean
Returns whether the current viewer can reply to the thread.
27 |
# File 'lib/yt/models/comment_thread.rb', line 27 delegate :can_reply?, to: :snippet |
#public? ⇒ Boolean
comment replies, is visible to all YouTube users.
24 |
# File 'lib/yt/models/comment_thread.rb', line 24 delegate :public?, to: :snippet |