Skip to main content

AccountUsage

Properties

NameTypeDescriptionNotes
var_datedateThe first day of the month for which activity is aggregated.[optional]
countintThe 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='Fri Apr 21 00:00:00 UTC 2023',
count=10
)

[Back to top]