Show / Hide Table of Contents

Class GuideCategory

A guideCategory resource identifies a category that YouTube algorithmically assigns based on a channel's content or other indicators, such as the channel's popularity. The list is similar to video categories, with the difference being that a video's uploader can assign a video category but only YouTube can assign a channel category.

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

Properties

ETag

Etag of this resource.

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

Id

The ID that YouTube uses to uniquely identify the guide category.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "youtube#guideCategory".

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

Snippet

The snippet object contains basic details about the category, such as its title.

Declaration
[JsonProperty("snippet")]
public virtual GuideCategorySnippet Snippet { get; set; }
Property Value
Type Description
GuideCategorySnippet

Implements

IDirectResponseSchema
Back to top