Skip to main content

SourceUsage

Properties

NameTypeDescriptionNotes
var_datedateThe first day of the month for which activity is aggregated.[optional]
countfloatThe average number of days that accounts were active within this source, for the month.[optional]
}

Example

from sailpoint.v2024.models.source_usage import SourceUsage

source_usage = SourceUsage(
var_date='Fri Apr 21 00:00:00 UTC 2023',
count=10.45
)

[Back to top]