Name | Type | Description | Notes |
---|---|---|---|
priority | float | Rule priority | [optional] |
description | str | Rule description | [optional] |
status | RulesetStatus | [optional] | |
workflow_id | str | Workflow to start on matching of conditions | [optional] |
conditions | RuleCondition | [optional] |
from formkiq_client.models.update_rule import UpdateRule
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateRule from a JSON string
update_rule_instance = UpdateRule.from_json(json)
# print the JSON string representation of the object
print(UpdateRule.to_json())
# convert the object into a dict
update_rule_dict = update_rule_instance.to_dict()
# create an instance of UpdateRule from a dict
update_rule_from_dict = UpdateRule.from_dict(update_rule_dict)