Name | Type | Description | Notes |
---|---|---|---|
name | str | Unique template identifier | |
discovery_template | bool | flag to indicate if the template is the discovery template | |
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] |
user | str | Creation user mail address | |
create_time | int | Timestamp expressed as milliseconds since 00:00:00 UTC on 1 January 1970, not counting leap seconds. | |
last_update_time | int | Timestamp expressed as milliseconds since 00:00:00 UTC on 1 January 1970, not counting leap seconds. | |
sensors | List[SensorNode] | List of sensors with required properties | [optional] |
actuators | List[ActuatorNode] | List of actuators with required properties | [optional] |
relations | List[RelationNode] | List of relations (gates) between sensors | [optional] |
triggers | List[SimplifiedGraphTriggersInner] | List of conditions under which actuators/sensors get executed. | [optional] |
from waylay.services.rules.models.replace_template200_response import ReplaceTemplate200Response
# TODO update the JSON string below
json = "{}"
# create an instance of ReplaceTemplate200Response from a JSON string
replace_template200_response_instance = ReplaceTemplate200Response.from_json(json)
# print the JSON string representation of the object
print ReplaceTemplate200Response.to_json()
# convert the object into a dict
replace_template200_response_dict = replace_template200_response_instance.to_dict()
# create an instance of ReplaceTemplate200Response from a dict
replace_template200_response_form_dict = replace_template200_response.from_dict(replace_template200_response_dict)