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 generated/google/apis/youtube_v3/classes.rb, line 7082
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/youtube_v3/classes.rb, line 7087
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