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.v2024.models.outlier_value_type import OutlierValueType

outlier_value_type = OutlierValueType(
name='INTEGER',
ordinal=0
)

[Back to top]