class Google::Apis::YoutubeV3::VideoCategorySnippet
Basic details about a video category, such as its localized title.
Attributes
assignable[RW]
Corresponds to the JSON property `assignable` @return [Boolean]
assignable?[RW]
Corresponds to the JSON property `assignable` @return [Boolean]
channel_id[RW]
The YouTube channel that created the video category. Corresponds to the JSON property `channelId` @return [String]
title[RW]
The video category's title. Corresponds to the JSON property `title` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 7604 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/youtube_v3/classes.rb, line 7609 def update!(**args) @assignable = args[:assignable] if args.key?(:assignable) @channel_id = args[:channel_id] if args.key?(:channel_id) @title = args[:title] if args.key?(:title) end