Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 2.04 KB

FormProperty.md

File metadata and controls

28 lines (24 loc) · 2.04 KB

FormProperty

Represents one field in the form.

Properties

Name Type Description Notes
id str The id of the property. [optional]
name str The name of the property. [optional]
type str The property type. [optional]
value str The property (default) value. [optional]
writable bool Whether the property is writable. [optional]
required bool Whether the property is required. [optional]
enum_values list[DropdownValue] The property's enum values. [optional]
check_buttons list[OptionValue] The property's checkbox buttons. [optional]
radio_buttons list[OptionValue] The property's radio buttons. [optional]
default_dropdown_values list[DropdownValue] The property's default dropdown values. [optional]
proposed_dropdown_values list[DropdownValue] The property's proposed dropdown values. [optional]
date_time_type str The datetime type in case the property is of type datetime. [optional]
multi_value bool Whether the property allows multiple values. [optional]
proposed_fixed bool Whether the property's proposed values are the only set of allowed values to select. [optional]
default_from_resource bool Whether the property's default value is the current resource. [optional]
multi_default_dropdown_values dict(str, list[DropdownValue]) The multi default dropdown values. [optional]
multi_proposed_dropdown_values dict(str, list[DropdownValue]) The multi proposed dropdown values. [optional]
asset_type ResourceReference [optional]

[Back to Model list] [Back to API list] [Back to README]