Class: Google::Apis::YoutubeV3::VideoSuggestionsTagSuggestion

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

A single tag suggestion with it's relevance information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoSuggestionsTagSuggestion

Returns a new instance of VideoSuggestionsTagSuggestion.



8557
8558
8559
# File 'generated/google/apis/youtube_v3/classes.rb', line 8557

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

Instance Attribute Details

#category_restrictsArray<String>

A set of video categories for which the tag is relevant. You can use this information to display appropriate tag suggestions based on the video category that the video uploader associates with the video. By default, tag suggestions are relevant for all categories if there are no restricts defined for the keyword. Corresponds to the JSON property categoryRestricts

Returns:

  • (Array<String>)


8550
8551
8552
# File 'generated/google/apis/youtube_v3/classes.rb', line 8550

def category_restricts
  @category_restricts
end

#tagString

The keyword tag suggested for the video. Corresponds to the JSON property tag

Returns:

  • (String)


8555
8556
8557
# File 'generated/google/apis/youtube_v3/classes.rb', line 8555

def tag
  @tag
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8562
8563
8564
8565
# File 'generated/google/apis/youtube_v3/classes.rb', line 8562

def update!(**args)
  @category_restricts = args[:category_restricts] if args.key?(:category_restricts)
  @tag = args[:tag] if args.key?(:tag)
end