Interface IPagedResponse<T>
An interface that represents a paged response of T
Namespace: Unity.Cloud.Assets
Syntax
public interface IPagedResponse<T>
Type Parameters
Name | Description |
---|---|
T | Type contained in the paged response |
Properties
Elements
Implement this property to return a collection of
Declaration
T[] Elements { get; }
Property Value
Type | Description |
---|---|
T[] |
NextPageToken
Implement this property to return the token for retrieving the next
Declaration
string NextPageToken { get; }
Property Value
Type | Description |
---|---|
String |
PageEndIndex
Implement this property to return the search index of the last result on this page.
Declaration
int PageEndIndex { get; }
Property Value
Type | Description |
---|---|
Int32 |
Pagination
Implement this property to return the page format.
Declaration
Pagination Pagination { get; }
Property Value
Type | Description |
---|---|
Pagination |
PreviousPage
Implement this property to return the previous
Declaration
IPagedResponse<T> PreviousPage { get; }
Property Value
Type | Description |
---|---|
IPagedResponse<T> |