Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/WorkItemsSummary.md
2025-05-07 14:37:48 +00:00

974 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
work-items-summary WorkItemsSummary WorkItemsSummary WorkItemsSummary powershellsdk
powershell
PowerShell
sdk
WorkItemsSummary
WorkItemsSummary
/tools/sdk/powershell/v3/models/work-items-summary
SDK
Software Development Kit
WorkItemsSummary
WorkItemsSummary

WorkItemsSummary

Properties

Name Type Description Notes
Open Int32 The count of open work items [optional]
Completed Int32 The count of completed work items [optional]
Total Int32 The count of total work items [optional]

Examples

  • Prepare the resource
$WorkItemsSummary = Initialize-WorkItemsSummary  -Open 29 `
 -Completed 1 `
 -Total 30
  • Convert the resource to JSON
$WorkItemsSummary | ConvertTo-JSON

[Back to top]