Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.12 KB

Rule.md

File metadata and controls

34 lines (25 loc) · 1.12 KB

Rule

Properties

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]

Example

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)

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