Show / Hide Table of Contents

Class SubscriptionContentDetails

Details about the content to witch a subscription refers.

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

Properties

ActivityType

The type of activity this subscription is for (only uploads, everything).

Declaration
[JsonProperty("activityType")]
public virtual string ActivityType { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NewItemCount

The number of new items in the subscription since its content was last read.

Declaration
[JsonProperty("newItemCount")]
public virtual long? NewItemCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

TotalItemCount

The approximate number of items that the subscription points to.

Declaration
[JsonProperty("totalItemCount")]
public virtual long? TotalItemCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
Back to top