Skip to main content

Outliervaluetype

The data type of the value field

Properties

NameTypeDescriptionNotes
nameEnum [ 'INTEGER', 'FLOAT' ]The data type of the value field[optional]
ordinalintThe position of the value type[optional]
}

Example

from sailpoint.iai_outliers.models.outliervaluetype import Outliervaluetype

outliervaluetype = Outliervaluetype(
name='INTEGER',
ordinal=0
)

[Back to top]