Struct google_youtube3::Activity [] [src]

pub struct Activity {
    pub snippet: Option<ActivitySnippet>,
    pub content_details: Option<ActivityContentDetails>,
    pub kind: Option<String>,
    pub etag: Option<String>,
    pub id: Option<String>,
}

An activity resource contains information about an action that a particular channel, or user, has taken on YouTube.The actions reported in activity feeds include rating a video, sharing a video, marking a video as a favorite, commenting on a video, uploading a video, and so forth. Each activity resource identifies the type of action, the channel associated with the action, and the resource(s) associated with the action, such as the video that was rated or uploaded.

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 snippet object contains basic details about the activity, including the activity's type and group ID.

The contentDetails object contains information about the content associated with the activity. For example, if the snippet.type value is videoRated, then the contentDetails object's content identifies the rated video.

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

Etag of this resource.

The ID that YouTube uses to uniquely identify the activity.

Trait Implementations

impl Default for Activity
[src]

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

impl Clone for Activity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Activity
[src]

Formats the value using the given formatter.

impl RequestValue for Activity
[src]

impl ResponseResult for Activity
[src]

impl ToParts for Activity
[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.