The IntegrationsPage Entity

The Catalytic.SDK.Entities.IntegrationsPage class represents a page of Integrations, usually returned from the Integrations.Find() method.

Instance Properties

NameTypeDescription
IntegrationsICollection<Integration>The Integrations included in this page of results
NextPageOptionsPagingOptionsOptions 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.

NameTypeDescription
ItemsIEnumerable<Integration>The Integrations included in this page of results
NextPageOptionsPagingOptionsOptions to pass into Integrations.Find() to fetch the next page of results
CollectionNamestringThe name of the items. In this case, "Integrations"