Struct google_plusdomains1::ActivityFeed[][src]

pub struct ActivityFeed {
    pub next_page_token: Option<String>,
    pub kind: Option<String>,
    pub title: Option<String>,
    pub items: Option<Vec<Activity>>,
    pub updated: Option<String>,
    pub next_link: Option<String>,
    pub etag: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
}

There is no detailed description.

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 continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.

Identifies this resource as a collection of activities. Value: "plus#activityFeed".

The title of this collection of activities, which is a truncated portion of the content.

The activities in this page of results.

The time at which this collection of activities was last updated. Formatted as an RFC 3339 timestamp.

Link to the next page of activities.

ETag of this response for caching purposes.

The ID of this collection of activities. Deprecated.

Link to this activity resource.

Trait Implementations

impl Default for ActivityFeed
[src]

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

impl Clone for ActivityFeed
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ActivityFeed
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ActivityFeed
[src]

Auto Trait Implementations