Struct google_youtube3::LiveBroadcastStatistics [] [src]

pub struct LiveBroadcastStatistics {
    pub concurrent_viewers: Option<String>,
    pub total_chat_count: Option<i64>,
}

Statistics about the live broadcast. These represent a snapshot of the values at the time of the request. Statistics are only returned for live broadcasts.

This type is not used in any activity, and only used as part of another schema.

Fields

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.

The total number of live chat messages currently on the broadcast. The property and its value will be present if the broadcast is public, has the live chat feature enabled, and has at least one message. Note that this field will not be filled after the broadcast ends. So this property would not identify the number of chat messages for an archived video of a completed live broadcast.

Trait Implementations

impl Debug for LiveBroadcastStatistics
[src]

Formats the value using the given formatter.

impl Clone for LiveBroadcastStatistics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for LiveBroadcastStatistics
[src]

Returns the "default value" for a type. Read more

impl Part for LiveBroadcastStatistics
[src]