Accessduration
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| value | int | The numeric value representing the amount of time, which is defined in the timeUnit. | [optional] |
| time_unit | Enum [ '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'
)