Struct google_youtube3::ActivitySnippet [] [src]

pub struct ActivitySnippet {
    pub thumbnails: Option<ThumbnailDetails>,
    pub title: Option<String>,
    pub channel_id: Option<String>,
    pub published_at: Option<String>,
    pub channel_title: Option<String>,
    pub type_: Option<String>,
    pub group_id: Option<String>,
    pub description: Option<String>,
}

Basic details about an activity, including title, description, thumbnails, activity type and group.

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

Fields

A map of thumbnail images associated with the resource that is primarily associated with the activity. 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 title of the resource primarily associated with the activity.

The ID that YouTube uses to uniquely identify the channel associated with the activity.

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

Channel title for the channel responsible for this activity

The type of activity that the resource describes.

The group ID associated with the activity. A group ID identifies user events that are associated with the same user and resource. For example, if a user rates a video and marks the same video as a favorite, the entries for those events would have the same group ID in the user's activity feed. In your user interface, you can avoid repetition by grouping events with the same groupId value.

The description of the resource primarily associated with the activity.

Trait Implementations

impl Default for ActivitySnippet
[src]

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

impl Clone for ActivitySnippet
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ActivitySnippet
[src]

Formats the value using the given formatter.

impl Part for ActivitySnippet
[src]