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
| 4095 4096 4097 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4095 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
| 4072 4073 4074 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4072 def @author_details end | 
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
| 4077 4078 4079 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4077 def etag @etag end | 
#id ⇒ String
The ID that YouTube assigns to uniquely identify the message.
Corresponds to the JSON property id
| 4082 4083 4084 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4082 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
| 4088 4089 4090 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4088 def kind @kind end | 
#snippet ⇒ Google::Apis::YoutubeV3::LiveChatMessageSnippet
The snippet object contains basic details about the message.
Corresponds to the JSON property snippet
| 4093 4094 4095 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4093 def snippet @snippet end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4100 4101 4102 4103 4104 4105 4106 | # File 'generated/google/apis/youtube_v3/classes.rb', line 4100 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 |