Show / Hide Table of Contents

Class PageInfo

Paging details for lists of resources, including total number of items available and number of resources returned in a single page.

Inheritance
System.Object
PageInfo
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.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class PageInfo : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ResultsPerPage

The number of results included in the API response.

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

TotalResults

The total number of results in the result set.

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

Implements

IDirectResponseSchema
Back to top