mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
---
|
||||
id: beta-work-items-summary
|
||||
title: WorkItemsSummary
|
||||
pagination_label: WorkItemsSummary
|
||||
sidebar_label: WorkItemsSummary
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'WorkItemsSummary', 'BetaWorkItemsSummary']
|
||||
slug: /tools/sdk/python/beta/models/work-items-summary
|
||||
tags: ['SDK', 'Software Development Kit', 'WorkItemsSummary', 'BetaWorkItemsSummary']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.work_items_summary import WorkItemsSummary
|
||||
|
||||
work_items_summary = WorkItemsSummary(
|
||||
open=29,
|
||||
completed=1,
|
||||
total=30
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user