class Google::Apis::YoutubeV3::ChannelBrandingSettings
Branding properties of a YouTube channel.
Attributes
channel[RW]
Branding properties for the channel view. Corresponds to the JSON property `channel` @return [Google::Apis::YoutubeV3::ChannelSettings]
hints[RW]
Additional experimental branding properties. Corresponds to the JSON property `hints` @return [Array<Google::Apis::YoutubeV3::PropertyValue>]
image[RW]
Branding properties for images associated with the channel. Corresponds to the JSON property `image` @return [Google::Apis::YoutubeV3::ImageSettings]
watch[RW]
Branding properties for the watch. All deprecated. Corresponds to the JSON property `watch` @return [Google::Apis::YoutubeV3::WatchSettings]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/youtube_v3/classes.rb, line 1123 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 1128 def update!(**args) @channel = args[:channel] if args.key?(:channel) @hints = args[:hints] if args.key?(:hints) @image = args[:image] if args.key?(:image) @watch = args[:watch] if args.key?(:watch) end