Class: Google::Apis::YoutubeV3::LiveChatModerator
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::LiveChatModerator
 
- 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 liveChatModerator resource represents a moderator for a YouTube live chat. A chat moderator has the ability to ban/unban users from a chat, remove message, etc.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Etag of this resource. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID that YouTube assigns to uniquely identify the moderator. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #snippet  ⇒ Google::Apis::YoutubeV3::LiveChatModeratorSnippet 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The snippet object contains basic details about the moderator. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LiveChatModerator 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LiveChatModerator. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveChatModerator
Returns a new instance of LiveChatModerator
| 4439 4440 4441 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4439 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
| 4421 4422 4423 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4421 def etag @etag end | 
#id ⇒ String
The ID that YouTube assigns to uniquely identify the moderator.
Corresponds to the JSON property id
| 4426 4427 4428 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4426 def id @id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
liveChatModerator".
Corresponds to the JSON property kind
| 4432 4433 4434 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4432 def kind @kind end | 
#snippet ⇒ Google::Apis::YoutubeV3::LiveChatModeratorSnippet
The snippet object contains basic details about the moderator.
Corresponds to the JSON property snippet
| 4437 4438 4439 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4437 def snippet @snippet end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4444 4445 4446 4447 4448 4449 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4444 def update!(**args) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @snippet = args[:snippet] if args.key?(:snippet) end |