Class VideoStatistics
Statistics about the video, such as the number of times the video was viewed or liked.
Inheritance
System.Object
VideoStatistics
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class VideoStatistics : IDirectResponseSchema
Properties
CommentCount
The number of comments for the video.
Declaration
[JsonProperty("commentCount")]
public virtual ulong? CommentCount { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |
DislikeCount
The number of users who have indicated that they disliked the video by giving it a negative rating.
Declaration
[JsonProperty("dislikeCount")]
public virtual ulong? DislikeCount { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FavoriteCount
The number of users who currently have the video marked as a favorite video.
Declaration
[JsonProperty("favoriteCount")]
public virtual ulong? FavoriteCount { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |
LikeCount
The number of users who have indicated that they liked the video by giving it a positive rating.
Declaration
[JsonProperty("likeCount")]
public virtual ulong? LikeCount { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |
ViewCount
The number of times the video has been viewed.
Declaration
[JsonProperty("viewCount")]
public virtual ulong? ViewCount { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.UInt64> |