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

Constructor Details

#initialize(**args) ⇒ LiveChatBan

Returns a new instance of LiveChatBan.



3978
3979
3980
# File 'generated/google/apis/youtube_v3/classes.rb', line 3978

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

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


3960
3961
3962
# File 'generated/google/apis/youtube_v3/classes.rb', line 3960

def etag
  @etag
end

#idString

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

Returns:

  • (String)


3965
3966
3967
# File 'generated/google/apis/youtube_v3/classes.rb', line 3965

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)


3971
3972
3973
# File 'generated/google/apis/youtube_v3/classes.rb', line 3971

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::LiveChatBanSnippet

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



3976
3977
3978
# File 'generated/google/apis/youtube_v3/classes.rb', line 3976

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3983
3984
3985
3986
3987
3988
# File 'generated/google/apis/youtube_v3/classes.rb', line 3983

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