class Google::Apis::YoutubeV3::GuideCategorySnippet

Basic details about a guide category.

Attributes

channel_id[RW]

Corresponds to the JSON property `channelId` @return [String]

title[RW]

Description of the guide category. 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 3049
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 3054
def update!(**args)
  @channel_id = args[:channel_id] if args.key?(:channel_id)
  @title = args[:title] if args.key?(:title)
end