class Google::Apis::YoutubeV3::WatchSettings
Branding properties for the watch. All deprecated.
Attributes
background_color[RW]
The text color for the video watch page's branded area. Corresponds to the JSON property `backgroundColor` @return [String]
featured_playlist_id[RW]
An ID that uniquely identifies a playlist that displays next to the video player. Corresponds to the JSON property `featuredPlaylistId` @return [String]
text_color[RW]
The background color for the video watch page's branded area. Corresponds to the JSON property `textColor` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/youtube_v3/classes.rb, line 8163 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 8168 def update!(**args) @background_color = args[:background_color] if args.key?(:background_color) @featured_playlist_id = args[:featured_playlist_id] if args.key?(:featured_playlist_id) @text_color = args[:text_color] if args.key?(:text_color) end