Class ListConnectionsResponse
The response to a request for the authenticated user's connections.
Inheritance
System.Object
ListConnectionsResponse
Implements
Google.Apis.Requests.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.PeopleService.v1.Data
Assembly: Google.Apis.PeopleService.v1.dll
Syntax
public class ListConnectionsResponse : IDirectResponseSchema
Properties
Connections
The list of people that the requestor is connected to.
Declaration
[JsonProperty("connections")]
public virtual IList<Person> Connections { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<Person> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
NextPageToken
The token that can be used to retrieve the next page of results.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
NextSyncToken
The token that can be used to retrieve changes since the last request.
Declaration
[JsonProperty("nextSyncToken")]
public virtual string NextSyncToken { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
TotalItems
The total number of items in the list without pagination.
Declaration
[JsonProperty("totalItems")]
public virtual int? TotalItems { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
TotalPeople
DEPRECATED (Please use totalItems) The total number of people in the list without pagination.
Declaration
[JsonProperty("totalPeople")]
public virtual int? TotalPeople { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Implements
Google.Apis.Requests.IDirectResponseSchema