Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.1 KB

Ruleset.md

File metadata and controls

34 lines (25 loc) · 1.1 KB

Ruleset

Properties

Name Type Description Notes
ruleset_id str Ruleset identifier [optional]
description str Ruleset description [optional]
priority float Ruleset priority [optional]
version float Ruleset version [optional]
inserted_date str Inserted Timestamp [optional]
status RulesetStatus [optional]

Example

from formkiq_client.models.ruleset import Ruleset

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

# convert the object into a dict
ruleset_dict = ruleset_instance.to_dict()
# create an instance of Ruleset from a dict
ruleset_from_dict = Ruleset.from_dict(ruleset_dict)

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