Class LiveStreamSnippet
  
  
  
    Inheritance
    
    LiveStreamSnippet
   
  
  
  
  Assembly: Google.Apis.YouTube.v3.dll
  Syntax
  
    public class LiveStreamSnippet : IDirectResponseSchema
   
  Properties
  
  ChannelId
  The ID that YouTube uses to uniquely identify the channel that is transmitting the stream.
Declaration
  
    [JsonProperty("channelId")]
public virtual string ChannelId { get; set; }
   
  Property Value
  
  
  Description
  The stream's description. The value cannot be longer than 10000 characters.
Declaration
  
    [JsonProperty("description")]
public virtual string Description { get; set; }
   
  Property Value
  
  
  ETag
  
  
  Declaration
  
    public virtual string ETag { get; set; }
   
  Property Value
  
  
  IsDefaultStream
  
  
  Declaration
  
    [JsonProperty("isDefaultStream")]
public virtual bool? IsDefaultStream { get; set; }
   
  Property Value
  
  
  PublishedAt
  
  
  Declaration
  
    [JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use PublishedAtDateTimeOffset instead.")]
public virtual DateTime? PublishedAt { get; set; }
   
  Property Value
  
  
  PublishedAtDateTimeOffset
  
  
  Declaration
  
    [JsonIgnore]
public virtual DateTimeOffset? PublishedAtDateTimeOffset { get; set; }
   
  Property Value
  
  
  PublishedAtRaw
  The date and time that the stream was created.
Declaration
  
    [JsonProperty("publishedAt")]
public virtual string PublishedAtRaw { get; set; }
   
  Property Value
  
  
  Title
  The stream's title. The value must be between 1 and 128 characters long.
Declaration
  
    [JsonProperty("title")]
public virtual string Title { get; set; }
   
  Property Value
  
  Implements