Name | Type | Description | Notes |
---|---|---|---|
description | str | Ruleset description | [optional] |
priority | float | Ruleset priority | [optional] |
version | float | Ruleset version | [optional] |
status | RulesetStatus | [optional] |
from formkiq_client.models.update_ruleset import UpdateRuleset
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateRuleset from a JSON string
update_ruleset_instance = UpdateRuleset.from_json(json)
# print the JSON string representation of the object
print(UpdateRuleset.to_json())
# convert the object into a dict
update_ruleset_dict = update_ruleset_instance.to_dict()
# create an instance of UpdateRuleset from a dict
update_ruleset_from_dict = UpdateRuleset.from_dict(update_ruleset_dict)