starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,38 @@
---
id: v2024-activity-insights
title: ActivityInsights
pagination_label: ActivityInsights
sidebar_label: ActivityInsights
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ActivityInsights', 'V2024ActivityInsights']
slug: /tools/sdk/python/v2024/models/activity-insights
tags: ['SDK', 'Software Development Kit', 'ActivityInsights', 'V2024ActivityInsights']
---
# 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.v2024.models.activity_insights import ActivityInsights
activity_insights = ActivityInsights(
account_id='c4ddd5421d8549f0abd309162cafd3b1',
usage_days=45,
usage_days_state='COMPLETE'
)
```
[[Back to top]](#)