Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.55 KB

PropertyUpdatesSpec.md

File metadata and controls

33 lines (24 loc) · 1.55 KB

PropertyUpdatesSpec

Properties

Name Type Description Notes
variables object Set of variables to update. Will be merged with the current variables. To delete any of the current variables (and fall back to the default value from the template) set the value to `null` [optional]
tags object Key-value pairs. Will be merged with the current tags. To delete any of the current tags set the value to `null` [optional]
gates_need_full_observation bool Only evaluate gates when all inputs are observed [optional] [default to False]
reset_observations bool [optional] [default to True]
parallel bool [optional] [default to True]

Example

from waylay.services.rules.models.property_updates_spec import PropertyUpdatesSpec

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

# convert the object into a dict
property_updates_spec_dict = property_updates_spec_instance.to_dict()
# create an instance of PropertyUpdatesSpec from a dict
property_updates_spec_form_dict = property_updates_spec.from_dict(property_updates_spec_dict)

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