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
4084 4085 4086 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4084 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
4061 4062 4063 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4061 def @author_details end |
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
4066 4067 4068 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4066 def etag @etag end |
#id ⇒ String
The ID that YouTube assigns to uniquely identify the message.
Corresponds to the JSON property id
4071 4072 4073 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4071 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
4077 4078 4079 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4077 def kind @kind end |
#snippet ⇒ Google::Apis::YoutubeV3::LiveChatMessageSnippet
The snippet object contains basic details about the message.
Corresponds to the JSON property snippet
4082 4083 4084 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4082 def snippet @snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4089 4090 4091 4092 4093 4094 4095 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 4089 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 |