Struct google_youtube3::api::LiveBroadcastSnippet
source · pub struct LiveBroadcastSnippet {
pub actual_end_time: Option<DateTime<Utc>>,
pub actual_start_time: Option<DateTime<Utc>>,
pub channel_id: Option<String>,
pub description: Option<String>,
pub is_default_broadcast: Option<bool>,
pub live_chat_id: Option<String>,
pub published_at: Option<DateTime<Utc>>,
pub scheduled_end_time: Option<DateTime<Utc>>,
pub scheduled_start_time: Option<DateTime<Utc>>,
pub thumbnails: Option<ThumbnailDetails>,
pub title: Option<String>,
}
Expand description
Basic broadcast information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§actual_end_time: Option<DateTime<Utc>>
The date and time that the broadcast actually ended. This information is only available once the broadcast’s state is complete.
actual_start_time: Option<DateTime<Utc>>
The date and time that the broadcast actually started. This information is only available once the broadcast’s state is live.
channel_id: Option<String>
The ID that YouTube uses to uniquely identify the channel that is publishing the broadcast.
description: Option<String>
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.
is_default_broadcast: Option<bool>
Indicates whether this broadcast is the default broadcast. Internal only.
live_chat_id: Option<String>
The id of the live chat for this broadcast.
published_at: Option<DateTime<Utc>>
The date and time that the broadcast was added to YouTube’s live broadcast schedule.
scheduled_end_time: Option<DateTime<Utc>>
The date and time that the broadcast is scheduled to end.
scheduled_start_time: Option<DateTime<Utc>>
The date and time that the broadcast is scheduled to start.
thumbnails: Option<ThumbnailDetails>
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.
title: Option<String>
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.
Trait Implementations§
source§impl Clone for LiveBroadcastSnippet
impl Clone for LiveBroadcastSnippet
source§fn clone(&self) -> LiveBroadcastSnippet
fn clone(&self) -> LiveBroadcastSnippet
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more