Skip to main content

AccessDuration

Properties

NameTypeDescriptionNotes
valueintThe numeric value representing the amount of time, which is defined in the timeUnit.[optional]
time_unitEnum [ 'HOURS', 'DAYS', 'WEEKS', 'MONTHS' ]The unit of time that corresponds to the value. It defines the scale of the time period.[optional]
}

Example

from sailpoint.dimensions.models.access_duration import AccessDuration

access_duration = AccessDuration(
value=6,
time_unit='MONTHS'
)

[Back to top]