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.access_profiles.models.accessduration import Accessduration

accessduration = Accessduration(
value=6,
time_unit='MONTHS'
)

[Back to top]