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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/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

Constructor Details

#initialize(**args) ⇒ LiveChatModerator

Returns a new instance of LiveChatModerator.



4606
4607
4608
# File 'lib/google/apis/youtube_v3/classes.rb', line 4606

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

Instance Attribute Details

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


4588
4589
4590
# File 'lib/google/apis/youtube_v3/classes.rb', line 4588

def etag
  @etag
end

#idString

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

Returns:

  • (String)


4593
4594
4595
# File 'lib/google/apis/youtube_v3/classes.rb', line 4593

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)


4599
4600
4601
# File 'lib/google/apis/youtube_v3/classes.rb', line 4599

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::LiveChatModeratorSnippet

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



4604
4605
4606
# File 'lib/google/apis/youtube_v3/classes.rb', line 4604

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4611
4612
4613
4614
4615
4616
# File 'lib/google/apis/youtube_v3/classes.rb', line 4611

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