Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.24 KB

ActionParameterDefinition.md

File metadata and controls

33 lines (25 loc) · 1.24 KB

ActionParameterDefinition

Properties

Name Type Description Notes
name str [optional]
type str [optional]
multi_valued bool [optional]
mandatory bool [optional]
display_label str [optional]
parameter_constraint_name str [optional]

Example

from alfresco_core_api_client.models.action_parameter_definition import ActionParameterDefinition

# TODO update the JSON string below
json = "{}"
# create an instance of ActionParameterDefinition from a JSON string
action_parameter_definition_instance = ActionParameterDefinition.from_json(json)
# print the JSON string representation of the object
print ActionParameterDefinition.to_json()

# convert the object into a dict
action_parameter_definition_dict = action_parameter_definition_instance.to_dict()
# create an instance of ActionParameterDefinition from a dict
action_parameter_definition_form_dict = action_parameter_definition.from_dict(action_parameter_definition_dict)

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