Show / Hide Table of Contents

Class LiveBroadcastStatus

Live broadcast state.

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

Properties

ETag

The ETag of the item.

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

LifeCycleStatus

The broadcast's status. The status can be updated using the API's liveBroadcasts.transition method.

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

LiveBroadcastPriority

Priority of the live broadcast event (internal state).

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

MadeForKids

Whether the broadcast is made for kids or not, decided by YouTube instead of the creator. This field is read only.

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

PrivacyStatus

The broadcast's privacy status. Note that the broadcast represents exactly one YouTube video, so the privacy settings are identical to those supported for videos. In addition, you can set this field by modifying the broadcast resource or by setting the privacyStatus field of the corresponding video resource.

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

RecordingStatus

The broadcast's recording status.

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

SelfDeclaredMadeForKids

This field will be set to True if the creator declares the broadcast to be kids only: go/live-cw- work.

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

Implements

IDirectResponseSchema
Back to top