Show / Hide Table of Contents

Class ListGroupsResponse

Response message for GroupsService.ListGroups.

Inheritance
System.Object
ListGroupsResponse
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.YouTubeAnalytics.v2.Data
Assembly: Google.Apis.YouTubeAnalytics.v2.dll
Syntax
public class ListGroupsResponse : IDirectResponseSchema

Properties

Errors

Apiary error details

Declaration
[JsonProperty("errors")]
public virtual Errors Errors { get; set; }
Property Value
Type Description
Errors

ETag

The Etag of this resource.

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

Items

A list of groups that match the API request parameters. Each item in the list represents a group resource.

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

Kind

Identifies the API resource's type. The value will be youtube#groupListResponse.

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

NextPageToken

The token that can be used as the value of the pageToken parameter to retrieve the next page in the result set.

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

Implements

IDirectResponseSchema
Back to top