Show / Hide Table of Contents

Class LiveBroadcastSnippet

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

Properties

ActualEndTime

System.DateTime representation of ActualEndTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? ActualEndTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

ActualEndTimeRaw

The date and time that the broadcast actually ended. This information is only available once the broadcast's state is complete. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

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

ActualStartTime

System.DateTime representation of ActualStartTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? ActualStartTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

ActualStartTimeRaw

The date and time that the broadcast actually started. This information is only available once the broadcast's state is live. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

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

ChannelId

The ID that YouTube uses to uniquely identify the channel that is publishing the broadcast.

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

Description

The broadcast's description. As with the title, you can set this field by modifying the broadcast resource or by setting the description field of the corresponding video resource.

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

IsDefaultBroadcast

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

LiveChatId

The id of the live chat for this broadcast.

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

PublishedAt

System.DateTime representation of PublishedAtRaw.

Declaration
[JsonIgnore]
public virtual DateTime? PublishedAt { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

PublishedAtRaw

The date and time that the broadcast was added to YouTube's live broadcast schedule. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

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

ScheduledEndTime

System.DateTime representation of ScheduledEndTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? ScheduledEndTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

ScheduledEndTimeRaw

The date and time that the broadcast is scheduled to end. The value is specified in ISO 8601 (YYYY- MM-DDThh:mm:ss.sZ) format.

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

ScheduledStartTime

System.DateTime representation of ScheduledStartTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTime? ScheduledStartTime { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

ScheduledStartTimeRaw

The date and time that the broadcast is scheduled to start. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

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

Thumbnails

A map of thumbnail images associated with the broadcast. For each nested object in this object, 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 broadcast's title. Note that the broadcast represents exactly one YouTube video. You can set this field by modifying the broadcast resource or by setting the title field of the corresponding video resource.

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

Implements

IDirectResponseSchema
Back to top