mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
---
|
||||
id: activity-insights
|
||||
title: ActivityInsights
|
||||
pagination_label: ActivityInsights
|
||||
sidebar_label: ActivityInsights
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'ActivityInsights', 'ActivityInsights']
|
||||
slug: /tools/sdk/python/v3/models/activity-insights
|
||||
tags: ['SDK', 'Software Development Kit', 'ActivityInsights', 'ActivityInsights']
|
||||
---
|
||||
|
||||
# ActivityInsights
|
||||
|
||||
Insights into account activity
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**account_id** | **str** | UUID of the account | [optional]
|
||||
**usage_days** | **int** | The number of days of activity | [optional]
|
||||
**usage_days_state** | **Enum** [ 'COMPLETE', 'UNKNOWN' ] | Status indicating if the activity is complete or unknown | [optional]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v3.models.activity_insights import ActivityInsights
|
||||
|
||||
activity_insights = ActivityInsights(
|
||||
account_id='c4ddd5421d8549f0abd309162cafd3b1',
|
||||
usage_days=45,
|
||||
usage_days_state='COMPLETE'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user