Struct google_youtube3::LiveBroadcast[][src]

pub struct LiveBroadcast {
    pub status: Option<LiveBroadcastStatus>,
    pub snippet: Option<LiveBroadcastSnippet>,
    pub kind: Option<String>,
    pub statistics: Option<LiveBroadcastStatistics>,
    pub etag: Option<String>,
    pub content_details: Option<LiveBroadcastContentDetails>,
    pub id: Option<String>,
}

A liveBroadcast resource represents an event that will be streamed, via live video, on YouTube.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The status object contains information about the event's status.

The snippet object contains basic details about the event, including its title, description, start time, and end time.

Identifies what kind of resource this is. Value: the fixed string "youtube#liveBroadcast".

The statistics object contains info about the event's current stats. These include concurrent viewers and total chat count. Statistics can change (in either direction) during the lifetime of an event. Statistics are only returned while the event is live.

Etag of this resource.

The contentDetails object contains information about the event's video content, such as whether the content can be shown in an embedded video player or if it will be archived and therefore available for viewing after the event has concluded.

The ID that YouTube assigns to uniquely identify the broadcast.

Trait Implementations

impl Default for LiveBroadcast
[src]

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

impl Clone for LiveBroadcast
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LiveBroadcast
[src]

Formats the value using the given formatter. Read more

impl RequestValue for LiveBroadcast
[src]

impl Resource for LiveBroadcast
[src]

impl ResponseResult for LiveBroadcast
[src]

impl ToParts for LiveBroadcast
[src]

Return a comma separated list of members that are currently set, i.e. for which self.member.is_some(). The produced string is suitable for use as a parts list that indicates the parts you are sending, and/or the parts you want to see in the server response.

Auto Trait Implementations