Class: Google::Apis::YoutubeV3::SubscriptionSubscriberSnippet
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubeV3::SubscriptionSubscriberSnippet
 
 
- 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
Basic details about a subscription's subscriber including title, description, channel ID and thumbnails.
Instance Attribute Summary collapse
- 
  
    
      #channel_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The channel ID of the subscriber.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the subscriber.
 - 
  
    
      #thumbnails  ⇒ Google::Apis::YoutubeV3::ThumbnailDetails 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Internal representation of thumbnails for a YouTube resource.
 - 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The title of the subscriber.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SubscriptionSubscriberSnippet 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SubscriptionSubscriberSnippet.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SubscriptionSubscriberSnippet
Returns a new instance of SubscriptionSubscriberSnippet.
      7069 7070 7071  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 7069 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#channel_id ⇒ String
The channel ID of the subscriber.
Corresponds to the JSON property channelId
      7052 7053 7054  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 7052 def channel_id @channel_id end  | 
  
#description ⇒ String
The description of the subscriber.
Corresponds to the JSON property description
      7057 7058 7059  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 7057 def description @description end  | 
  
#thumbnails ⇒ Google::Apis::YoutubeV3::ThumbnailDetails
Internal representation of thumbnails for a YouTube resource.
Corresponds to the JSON property thumbnails
      7062 7063 7064  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 7062 def thumbnails @thumbnails end  | 
  
#title ⇒ String
The title of the subscriber.
Corresponds to the JSON property title
      7067 7068 7069  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 7067 def title @title end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7074 7075 7076 7077 7078 7079  | 
    
      # File 'lib/google/apis/youtube_v3/classes.rb', line 7074 def update!(**args) @channel_id = args[:channel_id] if args.key?(:channel_id) @description = args[:description] if args.key?(:description) @thumbnails = args[:thumbnails] if args.key?(:thumbnails) @title = args[:title] if args.key?(:title) end  |