Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

UpdateRuleset.md

File metadata and controls

32 lines (23 loc) · 1.06 KB

UpdateRuleset

Properties

Name Type Description Notes
description str Ruleset description [optional]
priority float Ruleset priority [optional]
version float Ruleset version [optional]
status RulesetStatus [optional]

Example

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)

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