Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

AddRule.md

File metadata and controls

33 lines (24 loc) · 1.08 KB

AddRule

Properties

Name Type Description Notes
priority float Rule priority [optional]
description str Rule description [optional]
workflow_id str Workflow to start on matching of conditions [optional]
status RulesetStatus [optional]
conditions RuleCondition [optional]

Example

from formkiq_client.models.add_rule import AddRule

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

# convert the object into a dict
add_rule_dict = add_rule_instance.to_dict()
# create an instance of AddRule from a dict
add_rule_from_dict = AddRule.from_dict(add_rule_dict)

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