Class: Google::Apis::YoutubeV3::LiveChatModerator

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 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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LiveChatModerator

Returns a new instance of LiveChatModerator.



4636
4637
4638
# File 'generated/google/apis/youtube_v3/classes.rb', line 4636

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

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


4618
4619
4620
# File 'generated/google/apis/youtube_v3/classes.rb', line 4618

def etag
  @etag
end

#idString

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

Returns:

  • (String)


4623
4624
4625
# File 'generated/google/apis/youtube_v3/classes.rb', line 4623

def id
  @id
end

#kindString

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

Returns:

  • (String)


4629
4630
4631
# File 'generated/google/apis/youtube_v3/classes.rb', line 4629

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::LiveChatModeratorSnippet

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



4634
4635
4636
# File 'generated/google/apis/youtube_v3/classes.rb', line 4634

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4641
4642
4643
4644
4645
4646
# File 'generated/google/apis/youtube_v3/classes.rb', line 4641

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