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.source_usages.models.sourceusage import Sourceusage

sourceusage = Sourceusage(
var_date='Fri Apr 21 00:00:00 UTC 2023',
count=10.45
)

[Back to top]