Skip to main content

Schedule1Hours

Properties

NameTypeDescriptionNotes
typeSelectorType[required]
values[]strThe selected values.[required]
intervalintThe selected interval for RANGE selectors.[optional]
}

Example

from sailpoint.v3.models.schedule1_hours import Schedule1Hours

schedule1_hours = Schedule1Hours(
type='LIST',
values=[MON, WED],
interval=3
)

[Back to top]