Show / Hide Table of Contents

Class ActivityFeed

Inheritance
System.Object
ActivityFeed
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class ActivityFeed : IDirectResponseSchema

Properties

ETag

ETag of this response for caching purposes.

Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Id

The ID of this collection of activities. Deprecated.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

Items

The activities in this page of results.

Declaration
[JsonProperty("items")]
public virtual IList<Activity> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Activity>

Kind

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

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

NextLink

Link to the next page of activities.

Declaration
[JsonProperty("nextLink")]
public virtual string NextLink { get; set; }
Property Value
Type Description
System.String

NextPageToken

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.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

SelfLink

Link to this activity resource.

Declaration
[JsonProperty("selfLink")]
public virtual string SelfLink { get; set; }
Property Value
Type Description
System.String

Title

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

Declaration
[JsonProperty("title")]
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Updated

System.DateTime representation of UpdatedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? Updated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

UpdatedRaw

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

Declaration
[JsonProperty("updated")]
public virtual string UpdatedRaw { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top