Show / Hide Table of Contents

Class ChannelStatus

JSON template for the status part of a channel.

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

Properties

ETag

The ETag of the item.

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

IsLinked

If true, then the user is linked to either a YouTube username or G+ account. Otherwise, the user doesn't have a public YouTube identity.

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

LongUploadsStatus

The long uploads status of this channel. See https://support.google.com/youtube/answer/71673 for more information.

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

MadeForKids

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

PrivacyStatus

Privacy status of the channel.

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

SelfDeclaredMadeForKids

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

Implements

IDirectResponseSchema
Back to top