Show / Hide Table of Contents

Class SubscriptionSnippet

Basic details about a subscription, including title, description and thumbnails of the subscribed item.

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

Properties

ChannelId

The ID that YouTube uses to uniquely identify the subscriber's channel.

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

ChannelTitle

Channel title for the channel that the subscription belongs to.

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

Description

The subscription's details.

Declaration
[JsonProperty("description")]
public virtual string Description { 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

PublishedAt

The date and time that the subscription was created. The value is specified in ISO 8601 format.

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

ResourceId

The id object contains information about the channel that the user subscribed to.

Declaration
[JsonProperty("resourceId")]
public virtual ResourceId ResourceId { get; set; }
Property Value
Type Description
ResourceId

Thumbnails

A map of thumbnail images associated with the video. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail.

Declaration
[JsonProperty("thumbnails")]
public virtual ThumbnailDetails Thumbnails { get; set; }
Property Value
Type Description
ThumbnailDetails

Title

The subscription's title.

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

Implements

IDirectResponseSchema
Back to top