Show / Hide Table of Contents

Class ChannelStatistics

Statistics about a channel: number of subscribers, number of videos in the channel, etc.

Inheritance
System.Object
ChannelStatistics
Implements
IDirectResponseSchema
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 ChannelStatistics : IDirectResponseSchema

Properties

CommentCount

The number of comments for the channel.

Declaration
[JsonProperty("commentCount")]
public virtual ulong? CommentCount { 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

HiddenSubscriberCount

Whether or not the number of subscribers is shown for this user.

Declaration
[JsonProperty("hiddenSubscriberCount")]
public virtual bool? HiddenSubscriberCount { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

SubscriberCount

The number of subscribers that the channel has.

Declaration
[JsonProperty("subscriberCount")]
public virtual ulong? SubscriberCount { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

VideoCount

The number of videos uploaded to the channel.

Declaration
[JsonProperty("videoCount")]
public virtual ulong? VideoCount { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

ViewCount

The number of times the channel has been viewed.

Declaration
[JsonProperty("viewCount")]
public virtual ulong? ViewCount { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Implements

IDirectResponseSchema
Back to top