Class: Google::Apis::YoutubeV3::CommentThreadSnippet

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb

Overview

Basic details about a comment thread.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CommentThreadSnippet

Returns a new instance of CommentThreadSnippet.



2277
2278
2279
# File 'generated/google/apis/youtube_v3/classes.rb', line 2277

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#can_replyBoolean Also known as: can_reply?

Whether the current viewer of the thread can reply to it. This is viewer specific - other viewers may see a different value for this field. Corresponds to the JSON property canReply

Returns:

  • (Boolean)


2244
2245
2246
# File 'generated/google/apis/youtube_v3/classes.rb', line 2244

def can_reply
  @can_reply
end

#channel_idString

The YouTube channel the comments in the thread refer to or the channel with the video the comments refer to. If video_id isn't set the comments refer to the channel itself. Corresponds to the JSON property channelId

Returns:

  • (String)


2252
2253
2254
# File 'generated/google/apis/youtube_v3/classes.rb', line 2252

def channel_id
  @channel_id
end

#is_publicBoolean Also known as: is_public?

Whether the thread (and therefore all its comments) is visible to all YouTube users. Corresponds to the JSON property isPublic

Returns:

  • (Boolean)


2258
2259
2260
# File 'generated/google/apis/youtube_v3/classes.rb', line 2258

def is_public
  @is_public
end

#top_level_commentGoogle::Apis::YoutubeV3::Comment

A comment represents a single YouTube comment. Corresponds to the JSON property topLevelComment



2264
2265
2266
# File 'generated/google/apis/youtube_v3/classes.rb', line 2264

def top_level_comment
  @top_level_comment
end

#total_reply_countFixnum

The total number of replies (not including the top level comment). Corresponds to the JSON property totalReplyCount

Returns:

  • (Fixnum)


2269
2270
2271
# File 'generated/google/apis/youtube_v3/classes.rb', line 2269

def total_reply_count
  @total_reply_count
end

#video_idString

The ID of the video the comments refer to, if any. No video_id implies a channel discussion comment. Corresponds to the JSON property videoId

Returns:

  • (String)


2275
2276
2277
# File 'generated/google/apis/youtube_v3/classes.rb', line 2275

def video_id
  @video_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2282
2283
2284
2285
2286
2287
2288
2289
# File 'generated/google/apis/youtube_v3/classes.rb', line 2282

def update!(**args)
  @can_reply = args[:can_reply] if args.key?(:can_reply)
  @channel_id = args[:channel_id] if args.key?(:channel_id)
  @is_public = args[:is_public] if args.key?(:is_public)
  @top_level_comment = args[:top_level_comment] if args.key?(:top_level_comment)
  @total_reply_count = args[:total_reply_count] if args.key?(:total_reply_count)
  @video_id = args[:video_id] if args.key?(:video_id)
end