Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.68 KB

TemplateEntityCommonAttributes.md

File metadata and controls

35 lines (26 loc) · 1.68 KB

TemplateEntityCommonAttributes

Properties

Name Type Description Notes
name str Unique template identifier
discovery_template bool flag to indicate if the template is the discovery template [optional]
tags object Key-value pairs on which you can filter to finding templates back [optional]
variables List[VariableDeclaration] Variable declarations [optional]
task_defaults TaskDefaultsElement [optional]
description str Description of the template [optional]
notes List[NoteElement] List of notes as explanation for users [optional]

Example

from waylay.services.rules.models.template_entity_common_attributes import TemplateEntityCommonAttributes

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

# convert the object into a dict
template_entity_common_attributes_dict = template_entity_common_attributes_instance.to_dict()
# create an instance of TemplateEntityCommonAttributes from a dict
template_entity_common_attributes_form_dict = template_entity_common_attributes.from_dict(template_entity_common_attributes_dict)

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