Class: Google::Apis::YoutubeV3::LiveChatBan
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LiveChatBan
- 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 __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
snippetobject 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.
Constructor Details
#initialize(**args) ⇒ LiveChatBan
Returns a new instance of LiveChatBan.
4406 4407 4408 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 4406 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
4388 4389 4390 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 4388 def etag @etag end |
#id ⇒ String
The ID that YouTube assigns to uniquely identify the ban.
Corresponds to the JSON property id
4393 4394 4395 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 4393 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
4399 4400 4401 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 4399 def kind @kind end |
#snippet ⇒ Google::Apis::YoutubeV3::LiveChatBanSnippet
The snippet object contains basic details about the ban.
Corresponds to the JSON property snippet
4404 4405 4406 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 4404 def snippet @snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4411 4412 4413 4414 4415 4416 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 4411 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 |