Show / Hide Table of Contents

Class PeopleFeed

Inheritance
System.Object
PeopleFeed
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 PeopleFeed : 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

Items

The people in this page of results. Each item includes the id, displayName, image, and url for the person. To retrieve additional profile data, see the people.get method.

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

Kind

Identifies this resource as a collection of people. Value: "plus#peopleFeed".

Declaration
[JsonProperty("kind")]
public virtual string Kind { 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 resource.

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

Title

The title of this collection of people.

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

TotalItems

The total number of people available in this list. The number of people in a response might be smaller due to paging. This might not be set for all collections.

Declaration
[JsonProperty("totalItems")]
public virtual int? TotalItems { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top