Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AccountUsage.md
2025-06-04 16:00:21 +00:00

880 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
beta-account-usage AccountUsage AccountUsage AccountUsage pythonsdk
python
Python
sdk
AccountUsage
BetaAccountUsage
/tools/sdk/python/beta/models/account-usage
SDK
Software Development Kit
AccountUsage
BetaAccountUsage

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.beta.models.account_usage import AccountUsage

account_usage = AccountUsage(
var_date='Fri Apr 21 00:00:00 UTC 2023',
count=10
)

[Back to top]