Struct google_youtube3::api::VideoLiveStreamingDetails
source · pub struct VideoLiveStreamingDetails {
pub active_live_chat_id: Option<String>,
pub actual_end_time: Option<DateTime<Utc>>,
pub actual_start_time: Option<DateTime<Utc>>,
pub concurrent_viewers: Option<u64>,
pub scheduled_end_time: Option<DateTime<Utc>>,
pub scheduled_start_time: Option<DateTime<Utc>>,
}
Expand description
Details about the live streaming metadata.
This type is not used in any activity, and only used as part of another schema.
Fields§
§active_live_chat_id: Option<String>
The ID of the currently active live chat attached to this video. This field is filled only if the video is a currently live broadcast that has live chat. Once the broadcast transitions to complete this field will be removed and the live chat closed down. For persistent broadcasts that live chat id will no longer be tied to this video but rather to the new video being displayed at the persistent page.
actual_end_time: Option<DateTime<Utc>>
The time that the broadcast actually ended. This value will not be available until the broadcast is over.
actual_start_time: Option<DateTime<Utc>>
The time that the broadcast actually started. This value will not be available until the broadcast begins.
concurrent_viewers: Option<u64>
The number of viewers currently watching the broadcast. The property and its value will be present if the broadcast has current viewers and the broadcast owner has not hidden the viewcount for the video. Note that YouTube stops tracking the number of concurrent viewers for a broadcast when the broadcast ends. So, this property would not identify the number of viewers watching an archived video of a live broadcast that already ended.
scheduled_end_time: Option<DateTime<Utc>>
The time that the broadcast is scheduled to end. If the value is empty or the property is not present, then the broadcast is scheduled to contiue indefinitely.
scheduled_start_time: Option<DateTime<Utc>>
The time that the broadcast is scheduled to begin.
Trait Implementations§
source§impl Clone for VideoLiveStreamingDetails
impl Clone for VideoLiveStreamingDetails
source§fn clone(&self) -> VideoLiveStreamingDetails
fn clone(&self) -> VideoLiveStreamingDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more