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