class Google::Apis::YoutubeV3::PlaylistLocalization
Playlist
localization setting
Attributes
description[RW]
The localized strings for playlist's description. Corresponds to the JSON property `description` @return [String]
title[RW]
The localized strings for playlist'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 5979 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 5984 def update!(**args) @description = args[:description] if args.key?(:description) @title = args[:title] if args.key?(:title) end