The InstancesPage Entity
Instances Page
Catalytic.SDK.Entities.InstancesPage
The InstancesPage
class represents a page of Instance
s, usually returned from the Instances.Find()
method.
Instance Properties
Name | Type | Description |
---|---|---|
Instances | ICollection<Instance> | The Instances included in this page of results |
NextPageOptions | PagingOptions | Options to pass into Instances.Find() to fetch the next page of results |
IResultsPage Properties
Like every results page, InstancesPage
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<Instance> | The Instance s included in this page of results |
NextPageOptions | PagingOptions | Options to pass into Instances.Find() to fetch the next page of results |
CollectionName | string | The name of the items. In this case, "Instances" |
Updated about 4 years ago