Class: Google::Apis::YoutubeV3::LiveChatMessage

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LiveChatMessage

Returns a new instance of LiveChatMessage.



4143
4144
4145
# File 'generated/google/apis/youtube_v3/classes.rb', line 4143

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

Instance Attribute Details

#author_detailsGoogle::Apis::YoutubeV3::LiveChatMessageAuthorDetails

The authorDetails object contains basic details about the user that posted this message. Corresponds to the JSON property authorDetails



4120
4121
4122
# File 'generated/google/apis/youtube_v3/classes.rb', line 4120

def author_details
  @author_details
end

#etagString

Etag of this resource. Corresponds to the JSON property etag

Returns:

  • (String)


4125
4126
4127
# File 'generated/google/apis/youtube_v3/classes.rb', line 4125

def etag
  @etag
end

#idString

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

Returns:

  • (String)


4130
4131
4132
# File 'generated/google/apis/youtube_v3/classes.rb', line 4130

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "youtube# liveChatMessage". Corresponds to the JSON property kind

Returns:

  • (String)


4136
4137
4138
# File 'generated/google/apis/youtube_v3/classes.rb', line 4136

def kind
  @kind
end

#snippetGoogle::Apis::YoutubeV3::LiveChatMessageSnippet

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



4141
4142
4143
# File 'generated/google/apis/youtube_v3/classes.rb', line 4141

def snippet
  @snippet
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4148
4149
4150
4151
4152
4153
4154
# File 'generated/google/apis/youtube_v3/classes.rb', line 4148

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