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