Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/AccountUsage.md
2025-02-20 12:59:19 -05:00

885 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-account-usage AccountUsage AccountUsage AccountUsage pythonsdk
python
Python
sdk
AccountUsage
V2024AccountUsage
/tools/sdk/python/v2024/models/account-usage
SDK
Software Development Kit
AccountUsage
V2024AccountUsage

AccountUsage

Properties

Name Type Description Notes
var_date date The first day of the month for which activity is aggregated. [optional]
count int The number of days within the month that the account was active in a source. [optional]
}

Example

from sailpoint.v2024.models.account_usage import AccountUsage

account_usage = AccountUsage(
var_date='Thu Apr 20 20:00:00 EDT 2023',
count=10
)

[Back to top]