Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.11 KB

UpdateRule.md

File metadata and controls

33 lines (24 loc) · 1.11 KB

UpdateRule

Properties

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]

Example

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)

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