Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/FormElementDataSourceConfigOptions.md
2025-02-20 12:59:19 -05:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-form-element-data-source-config-options FormElementDataSourceConfigOptions FormElementDataSourceConfigOptions FormElementDataSourceConfigOptions pythonsdk
python
Python
sdk
FormElementDataSourceConfigOptions
BetaFormElementDataSourceConfigOptions
/tools/sdk/python/beta/models/form-element-data-source-config-options
SDK
Software Development Kit
FormElementDataSourceConfigOptions
BetaFormElementDataSourceConfigOptions

FormElementDataSourceConfigOptions

Properties

Name Type Description Notes
label str Label is the main label to display to the user when selecting this option [optional]
sub_label str SubLabel is the sub label to display below the label in diminutive styling to help describe or identify this option [optional]
value str Value is the value to save as an entry when the user selects this option [optional]
}

Example

from sailpoint.beta.models.form_element_data_source_config_options import FormElementDataSourceConfigOptions

form_element_data_source_config_options = FormElementDataSourceConfigOptions(
label='regression-test-access-request-07c55dd6-3056-430a-86b5-fccc395bb6c5',
sub_label='',
value='e96674448eba4ca1ba04eee999a8f3cd'
)

[Back to top]