Show / Hide Table of Contents

Class ChannelSectionSnippet

Basic details about a channel section, including title, style and position.

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

Properties

ChannelId

The ID that YouTube uses to uniquely identify the channel that published the channel section.

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

DefaultLanguage

The language of the channel section's default title and description.

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

Localized

Localized title, read-only.

Declaration
[JsonProperty("localized")]
public virtual ChannelSectionLocalization Localized { get; set; }
Property Value
Type Description
ChannelSectionLocalization

Position

The position of the channel section in the channel.

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

Style

The style of the channel section.

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

Title

The channel section's title for multiple_playlists and multiple_channels.

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

Type

The type of the channel section.

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

Implements

IDirectResponseSchema
Back to top