Struct google_youtube3::api::LiveBroadcastStatus
source · pub struct LiveBroadcastStatus {
pub life_cycle_status: Option<String>,
pub live_broadcast_priority: Option<String>,
pub made_for_kids: Option<bool>,
pub privacy_status: Option<String>,
pub recording_status: Option<String>,
pub self_declared_made_for_kids: Option<bool>,
}
Expand description
Live broadcast state.
This type is not used in any activity, and only used as part of another schema.
Fields§
§life_cycle_status: Option<String>
The broadcast’s status. The status can be updated using the API’s liveBroadcasts.transition method.
live_broadcast_priority: Option<String>
Priority of the live broadcast event (internal state).
made_for_kids: Option<bool>
Whether the broadcast is made for kids or not, decided by YouTube instead of the creator. This field is read only.
privacy_status: Option<String>
The broadcast’s privacy status. Note that the broadcast represents exactly one YouTube video, so the privacy settings are identical to those supported for videos. In addition, you can set this field by modifying the broadcast resource or by setting the privacyStatus field of the corresponding video resource.
recording_status: Option<String>
The broadcast’s recording status.
self_declared_made_for_kids: Option<bool>
This field will be set to True if the creator declares the broadcast to be kids only: go/live-cw-work.
Trait Implementations§
source§impl Clone for LiveBroadcastStatus
impl Clone for LiveBroadcastStatus
source§fn clone(&self) -> LiveBroadcastStatus
fn clone(&self) -> LiveBroadcastStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more