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