Class: Google::Apis::YoutubeV3::VideoStatistics
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::VideoStatistics
 
- 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
Statistics about the video, such as the number of times the video was viewed or liked.
Instance Attribute Summary collapse
- 
  
    
      #comment_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of comments for the video. 
- 
  
    
      #dislike_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of users who have indicated that they disliked the video by giving it a negative rating. 
- 
  
    
      #favorite_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of users who currently have the video marked as a favorite video. 
- 
  
    
      #like_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of users who have indicated that they liked the video by giving it a positive rating. 
- 
  
    
      #view_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of times the video has been viewed. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ VideoStatistics 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of VideoStatistics. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VideoStatistics
Returns a new instance of VideoStatistics
| 8223 8224 8225 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8223 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#comment_count ⇒ Fixnum
The number of comments for the video.
Corresponds to the JSON property commentCount
| 8199 8200 8201 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8199 def comment_count @comment_count end | 
#dislike_count ⇒ Fixnum
The number of users who have indicated that they disliked the video by giving
it a negative rating.
Corresponds to the JSON property dislikeCount
| 8205 8206 8207 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8205 def dislike_count @dislike_count end | 
#favorite_count ⇒ Fixnum
The number of users who currently have the video marked as a favorite video.
Corresponds to the JSON property favoriteCount
| 8210 8211 8212 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8210 def favorite_count @favorite_count end | 
#like_count ⇒ Fixnum
The number of users who have indicated that they liked the video by giving it
a positive rating.
Corresponds to the JSON property likeCount
| 8216 8217 8218 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8216 def like_count @like_count end | 
#view_count ⇒ Fixnum
The number of times the video has been viewed.
Corresponds to the JSON property viewCount
| 8221 8222 8223 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8221 def view_count @view_count end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 8228 8229 8230 8231 8232 8233 8234 | # File 'generated/google/apis/youtube_v3/classes.rb', line 8228 def update!(**args) @comment_count = args[:comment_count] if args.key?(:comment_count) @dislike_count = args[:dislike_count] if args.key?(:dislike_count) @favorite_count = args[:favorite_count] if args.key?(:favorite_count) @like_count = args[:like_count] if args.key?(:like_count) @view_count = args[:view_count] if args.key?(:view_count) end |