Workitemssummary
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| open | int | The count of open work items | [optional] |
| completed | int | The count of completed work items | [optional] |
| total | int | The count of total work items | [optional] |
| } |
Example
from sailpoint.work_items.models.workitemssummary import Workitemssummary
workitemssummary = Workitemssummary(
open=29,
completed=1,
total=30
)