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,35 @@
---
id: source-usage
title: SourceUsage
pagination_label: SourceUsage
sidebar_label: SourceUsage
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SourceUsage', 'SourceUsage']
slug: /tools/sdk/python/v3/models/source-usage
tags: ['SDK', 'Software Development Kit', 'SourceUsage', 'SourceUsage']
---
# SourceUsage
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**var_date** | **date** | The first day of the month for which activity is aggregated. | [optional]
**count** | **float** | The average number of days that accounts were active within this source, for the month. | [optional]
}
## Example
```python
from sailpoint.v3.models.source_usage import SourceUsage
source_usage = SourceUsage(
var_date='Thu Apr 20 20:00:00 EDT 2023',
count=10.45
)
```
[[Back to top]](#)