Skip to main content

PendingapprovalMaxPermittedAccessDuration

The maximum duration for which the access is permitted.

Properties

NameTypeDescriptionNotes
valueintThe numeric value of the duration.[optional]
time_unitEnum [ 'HOURS', 'DAYS', 'WEEKS', 'MONTHS' ]The time unit for the duration.[optional]
}

Example

from sailpoint.access_request_approvals.models.pendingapproval_max_permitted_access_duration import PendingapprovalMaxPermittedAccessDuration

pendingapproval_max_permitted_access_duration = PendingapprovalMaxPermittedAccessDuration(
value=5,
time_unit='DAYS'
)

[Back to top]