class Google::Apis::YoutubeV3::GuideCategory
A guideCategory resource identifies a category that YouTube algorithmically assigns based on a channel's content or other indicators, such as the channel' s popularity. The list is similar to video categories, with the difference being that a video's uploader can assign a video category but only YouTube can assign a channel category.
Attributes
Etag of this resource. Corresponds to the JSON property `etag` @return [String]
The ID that YouTube uses to uniquely identify the guide category. Corresponds to the JSON property `id` @return [String]
Identifies what kind of resource this is. Value: the fixed string “youtube# guideCategory”. Corresponds to the JSON property `kind` @return [String]
Basic details about a guide category. Corresponds to the JSON property `snippet` @return [Google::Apis::YoutubeV3::GuideCategorySnippet]
Public Class Methods
# File generated/google/apis/youtube_v3/classes.rb, line 2949 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/youtube_v3/classes.rb, line 2954 def update!(**args) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @snippet = args[:snippet] if args.key?(:snippet) end