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