Skip to main content

Selector

Properties

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

Example

from sailpoint.sod_policies.models.selector import Selector

selector = Selector(
type='LIST',
values=["MON","WED"],
interval=3
)

[Back to top]