The AccessTokensPage Entity
Access Tokens Page
Catalytic.SDK.Entities.AccessTokensPage
The AccessTokensPage
class represents a page of AccessToken
s, usually returned from the AccessTokens.Find()
method.
Instance Properties
Name | Type | Description |
---|---|---|
AccessTokens | ICollection<AccessToken> | The AccessTokens included in this page of results |
NextPageOptions | PagingOptions | Options to pass into AccessTokens.Find() to fetch the next page of results |
IResultsPage Properties
Like every results page, AccessTokensPage
implements Catalytic.Sdk.Entities.IResultsPage<T>
which provides the following properties. This can be helpful if you are building generic functionality for result pages.
Name | Type | Description |
---|---|---|
Items | IEnumerable<AccessToken> | The AccessTokens included in this page of results |
NextPageOptions | PagingOptions | Options to pass into AccessToken.Find() to fetch the next page of results |
CollectionName | string | The name of the items. In this case, "AccessTokens" |
Updated about 4 years ago