The WorkflowsPage Entity

Workflows Page

Catalytic.SDK.Entities.WorkflowsPage

The WorkflowsPage class represents a page of Workflows, usually returned from the Workflow.Find() method.

Instance Properties

NameTypeDescription
WorkflowICollection<Workflow>The Workflow included in this page of results
NextPageOptionsPagingOptionsOptions to pass into Workflow.Find() to fetch the next page of results

IResultsPage Properties

Like every results page, WorkflowsPage 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<Workflow>The Workflows included in this page of results
NextPageOptionsPagingOptionsOptions to pass into Workflow.Find() to fetch the next page of results
CollectionNamestringThe name of the items. In this case, "Workflows"