Struct google_youtube3::VideoSnippet[][src]

pub struct VideoSnippet {
    pub description: Option<String>,
    pub tags: Option<Vec<String>>,
    pub default_audio_language: Option<String>,
    pub channel_id: Option<String>,
    pub published_at: Option<String>,
    pub live_broadcast_content: Option<String>,
    pub default_language: Option<String>,
    pub thumbnails: Option<ThumbnailDetails>,
    pub title: Option<String>,
    pub category_id: Option<String>,
    pub localized: Option<VideoLocalization>,
    pub channel_title: Option<String>,
}

Basic details about a video, including title, description, uploader, thumbnails and category.

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

Fields

The video's description.

A list of keyword tags associated with the video. Tags may contain spaces.

The default_audio_language property specifies the language spoken in the video's default audio track.

The ID that YouTube uses to uniquely identify the channel that the video was uploaded to.

The date and time that the video was uploaded. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

Indicates if the video is an upcoming/active live broadcast. Or it's "none" if the video is not an upcoming/active live broadcast.

The language of the videos's default snippet.

A map of thumbnail images associated with the video. For each object in the map, the key is the name of the thumbnail image, and the value is an object that contains other information about the thumbnail.

The video's title.

The YouTube video category associated with the video.

Localized snippet selected with the hl parameter. If no such localization exists, this field is populated with the default snippet. (Read-only)

Channel title for the channel that the video belongs to.

Trait Implementations

impl Default for VideoSnippet
[src]

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

impl Clone for VideoSnippet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VideoSnippet
[src]

Formats the value using the given formatter. Read more

impl Part for VideoSnippet
[src]

Auto Trait Implementations