Class: Google::Apis::YoutubeV3::ChannelBrandingSettings
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::ChannelBrandingSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/google/apis/youtube_v3/representations.rb
Overview
Branding properties of a YouTube channel.
Instance Attribute Summary collapse
-
#channel ⇒ Google::Apis::YoutubeV3::ChannelSettings
Branding properties for the channel view.
-
#hints ⇒ Array<Google::Apis::YoutubeV3::PropertyValue>
Additional experimental branding properties.
-
#image ⇒ Google::Apis::YoutubeV3::ImageSettings
Branding properties for images associated with the channel.
-
#watch ⇒ Google::Apis::YoutubeV3::WatchSettings
Branding properties for the watch.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChannelBrandingSettings
constructor
A new instance of ChannelBrandingSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChannelBrandingSettings
Returns a new instance of ChannelBrandingSettings.
1185 1186 1187 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel ⇒ Google::Apis::YoutubeV3::ChannelSettings
Branding properties for the channel view.
Corresponds to the JSON property channel
1168 1169 1170 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1168 def channel @channel end |
#hints ⇒ Array<Google::Apis::YoutubeV3::PropertyValue>
Additional experimental branding properties.
Corresponds to the JSON property hints
1173 1174 1175 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1173 def hints @hints end |
#image ⇒ Google::Apis::YoutubeV3::ImageSettings
Branding properties for images associated with the channel.
Corresponds to the JSON property image
1178 1179 1180 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1178 def image @image end |
#watch ⇒ Google::Apis::YoutubeV3::WatchSettings
Branding properties for the watch. All deprecated.
Corresponds to the JSON property watch
1183 1184 1185 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1183 def watch @watch end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1190 1191 1192 1193 1194 1195 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1190 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 |