Struct google_youtube3::ChannelSnippet[][src]

pub struct ChannelSnippet {
    pub description: Option<String>,
    pub title: Option<String>,
    pub country: Option<String>,
    pub custom_url: Option<String>,
    pub default_language: Option<String>,
    pub published_at: Option<String>,
    pub localized: Option<ChannelLocalization>,
    pub thumbnails: Option<ThumbnailDetails>,
}

Basic details about a channel, including title, description and thumbnails. Next available id: 15.

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

Fields

The description of the channel.

The channel's title.

The country of the channel.

The custom url of the channel.

The language of the channel's default title and description.

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

Localized title and description, read-only.

A map of thumbnail images associated with the channel. 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.

Trait Implementations

impl Default for ChannelSnippet
[src]

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

impl Clone for ChannelSnippet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ChannelSnippet
[src]

Formats the value using the given formatter. Read more

impl Part for ChannelSnippet
[src]

Auto Trait Implementations