Class: Google::Apis::YoutubeV3::Sponsor
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::Sponsor
 
- 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
A sponsor resource represents a sponsor for a YouTube channel. A sponsor provides recurring monetary support to a creator and receives special benefits.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Etag of this resource. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #snippet  ⇒ Google::Apis::YoutubeV3::SponsorSnippet 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The snippet object contains basic details about the sponsor. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Sponsor 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Sponsor. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Sponsor
Returns a new instance of Sponsor
| 6183 6184 6185 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6183 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
| 6170 6171 6172 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6170 def etag @etag end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
sponsor".
Corresponds to the JSON property kind
| 6176 6177 6178 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6176 def kind @kind end | 
#snippet ⇒ Google::Apis::YoutubeV3::SponsorSnippet
The snippet object contains basic details about the sponsor.
Corresponds to the JSON property snippet
| 6181 6182 6183 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6181 def snippet @snippet end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 6188 6189 6190 6191 6192 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6188 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @snippet = args[:snippet] if args.key?(:snippet) end |