Skip to main content

ModelField

Properties

NameTypeDescriptionNotes
namestrName of the FormItem[optional]
display_namestrDisplay name of the field[optional]
display_typestrType of the field to display[optional]
requiredboolTrue if the field is required[optional]
allowed_values_list[]objectList of allowed values for the field[optional]
valueobjectValue of the field[optional]
}

Example

from sailpoint.beta.models.model_field import ModelField

model_field = ModelField(
name='Field1',
display_name='Field 1',
display_type='checkbox',
required=True,
allowed_values_list=[{Val1Display=null, Val1Value=null}, {Val2Display=null, Val2Value=null}],
value=None
)

[Back to top]