Class: Google::Apis::YoutubeV3::LiveChatBan
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::YoutubeV3::LiveChatBan
 
 
- 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 liveChatBan resource represents a ban for a YouTube live chat.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Etag of this resource.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID that YouTube assigns to uniquely identify the ban.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifies what kind of resource this is.
 - 
  
    
      #snippet  ⇒ Google::Apis::YoutubeV3::LiveChatBanSnippet 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The snippet object contains basic details about the ban.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LiveChatBan 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of LiveChatBan.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveChatBan
Returns a new instance of LiveChatBan
      3977 3978 3979  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 3977 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
      3959 3960 3961  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 3959 def etag @etag end  | 
  
#id ⇒ String
The ID that YouTube assigns to uniquely identify the ban.
Corresponds to the JSON property id
      3964 3965 3966  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 3964 def id @id end  | 
  
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
liveChatBan".
Corresponds to the JSON property kind
      3970 3971 3972  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 3970 def kind @kind end  | 
  
#snippet ⇒ Google::Apis::YoutubeV3::LiveChatBanSnippet
The snippet object contains basic details about the ban.
Corresponds to the JSON property snippet
      3975 3976 3977  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 3975 def snippet @snippet end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3982 3983 3984 3985 3986 3987  | 
    
      # File 'generated/google/apis/youtube_v3/classes.rb', line 3982 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  |