Skip to main content

Selector

Properties

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

Example

from sailpoint.v3.models.selector import Selector

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

[Back to top]