Class: Google::Apis::YoutubeV3::Comment
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::Comment
 
- 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 comment represents a single YouTube comment.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Etag of this resource. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID that YouTube uses to uniquely identify the comment. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #snippet  ⇒ Google::Apis::YoutubeV3::CommentSnippet 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Basic details about a comment, such as its author and text. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Comment 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Comment. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Comment
Returns a new instance of Comment
| 1909 1910 1911 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1909 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
| 1891 1892 1893 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1891 def etag @etag end | 
#id ⇒ String
The ID that YouTube uses to uniquely identify the comment.
Corresponds to the JSON property id
| 1896 1897 1898 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1896 def id @id end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
comment".
Corresponds to the JSON property kind
| 1902 1903 1904 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1902 def kind @kind end | 
#snippet ⇒ Google::Apis::YoutubeV3::CommentSnippet
Basic details about a comment, such as its author and text.
Corresponds to the JSON property snippet
| 1907 1908 1909 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1907 def snippet @snippet end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1914 1915 1916 1917 1918 1919 | # File 'generated/google/apis/youtube_v3/classes.rb', line 1914 def update!(**args) @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 |