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
4257 4258 4259 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4257 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
4234 4235 4236 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4234 def @author_details end |
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
4239 4240 4241 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4239 def etag @etag end |
#id ⇒ String
The ID that YouTube assigns to uniquely identify the message.
Corresponds to the JSON property id
4244 4245 4246 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4244 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
4250 4251 4252 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4250 def kind @kind end |
#snippet ⇒ Google::Apis::YoutubeV3::LiveChatMessageSnippet
The snippet object contains basic details about the message.
Corresponds to the JSON property snippet
4255 4256 4257 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4255 def snippet @snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4262 4263 4264 4265 4266 4267 4268 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4262 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 |