Class: Google::Apis::YoutubeV3::ChannelBrandingSettings
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::ChannelBrandingSettings
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
 generated/google/apis/youtube_v3/representations.rb,
 generated/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. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChannelBrandingSettings
Returns a new instance of ChannelBrandingSettings
| 1085 1086 1087 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1085 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
| 1068 1069 1070 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1068 def channel @channel end | 
#hints ⇒ Array<Google::Apis::YoutubeV3::PropertyValue>
Additional experimental branding properties.
Corresponds to the JSON property hints
| 1073 1074 1075 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1073 def hints @hints end | 
#image ⇒ Google::Apis::YoutubeV3::ImageSettings
Branding properties for images associated with the channel.
Corresponds to the JSON property image
| 1078 1079 1080 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1078 def image @image end | 
#watch ⇒ Google::Apis::YoutubeV3::WatchSettings
Branding properties for the watch. All deprecated.
Corresponds to the JSON property watch
| 1083 1084 1085 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1083 def watch @watch end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1090 1091 1092 1093 1094 1095 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1090 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 |