Skip to main content

WorkflowLibraryFormFields

Properties

NameTypeDescriptionNotes
descriptionstrDescription of the form field[optional]
help_textstrDescribes the form field in the UI[optional]
labelstrA human readable name for this form field in the UI[optional]
namestrThe name of the input attribute[optional]
requiredboolDenotes if this field is a required attribute[optional]
typeEnum [ 'text', 'textarea', 'boolean', 'email', 'url', 'number', 'json', 'checkbox', 'jsonpath', 'select', 'multiType', 'duration', 'toggle', 'formPicker', 'identityPicker', 'governanceGroupPicker', 'string', 'object', 'array', 'secret', 'keyValuePairs', 'emailPicker', 'advancedToggle', 'variableCreator', 'htmlEditor' ]The type of the form field[optional]
}

Example

from sailpoint.beta.models.workflow_library_form_fields import WorkflowLibraryFormFields

workflow_library_form_fields = WorkflowLibraryFormFields(
description='First value to compare',
help_text='The name to give to this certification campaign.',
label='Campaign Name',
name='name',
required=False,
type='text'
)

[Back to top]