Class: Google::Apis::YoutubeV3::LiveChatMessage
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::LiveChatMessage
- 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 liveChatMessage resource represents a chat message in a YouTube Live Chat.
Instance Attribute Summary collapse
-
#author_details ⇒ Google::Apis::YoutubeV3::LiveChatMessageAuthorDetails
The authorDetails object contains basic details about the user that posted this message.
-
#etag ⇒ String
Etag of this resource.
-
#id ⇒ String
The ID that YouTube assigns to uniquely identify the message.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#snippet ⇒ Google::Apis::YoutubeV3::LiveChatMessageSnippet
The snippet object contains basic details about the message.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LiveChatMessage
constructor
A new instance of LiveChatMessage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LiveChatMessage
Returns a new instance of LiveChatMessage
4109 4110 4111 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4109 def initialize(**args) update!(**args) end |
Instance Attribute Details
#author_details ⇒ Google::Apis::YoutubeV3::LiveChatMessageAuthorDetails
The authorDetails object contains basic details about the user that posted
this message.
Corresponds to the JSON property authorDetails
4086 4087 4088 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4086 def @author_details end |
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
4091 4092 4093 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4091 def etag @etag end |
#id ⇒ String
The ID that YouTube assigns to uniquely identify the message.
Corresponds to the JSON property id
4096 4097 4098 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4096 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
liveChatMessage".
Corresponds to the JSON property kind
4102 4103 4104 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4102 def kind @kind end |
#snippet ⇒ Google::Apis::YoutubeV3::LiveChatMessageSnippet
The snippet object contains basic details about the message.
Corresponds to the JSON property snippet
4107 4108 4109 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4107 def snippet @snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4114 4115 4116 4117 4118 4119 4120 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4114 def update!(**args) @author_details = args[:author_details] if args.key?(:author_details) @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 |