Class: Google::Apis::YoutubeV3::LiveChatBan

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LiveChatBan

Returns a new instance of LiveChatBan.



4025
4026
4027
# File 'generated/google/apis/youtube_v3/classes.rb', line 4025

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


4007
4008
4009
# File 'generated/google/apis/youtube_v3/classes.rb', line 4007

def etag
  @etag
end

#idString

The ID that YouTube assigns to uniquely identify the ban. Corresponds to the JSON property id

Returns:

  • (String)


4012
4013
4014
# File 'generated/google/apis/youtube_v3/classes.rb', line 4012

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "youtube# liveChatBan". Corresponds to the JSON property kind

Returns:

  • (String)


4018
4019
4020
# File 'generated/google/apis/youtube_v3/classes.rb', line 4018

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::LiveChatBanSnippet

The snippet object contains basic details about the ban. Corresponds to the JSON property snippet



4023
4024
4025
# File 'generated/google/apis/youtube_v3/classes.rb', line 4023

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4030
4031
4032
4033
4034
4035
# File 'generated/google/apis/youtube_v3/classes.rb', line 4030

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