Show / Hide Table of Contents

Class ListGroupItemsResponse

Response message for GroupsService.ListGroupItems.

Inheritance
System.Object
ListGroupItemsResponse
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 ListGroupItemsResponse : 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 groupItem resource.

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

Kind

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

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

Implements

IDirectResponseSchema
Back to top