Skip to main content

ScheduleDays

Properties

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

Example

from sailpoint.scheduled_search.models.schedule_days import ScheduleDays

schedule_days = ScheduleDays(
type='LIST',
values=[MON, WED],
interval=3
)

[Back to top]