Name | Type | Description | Notes |
---|---|---|---|
data | RuleRead |
from firefly_iii_client.models.rule_single import RuleSingle
# TODO update the JSON string below
json = "{}"
# create an instance of RuleSingle from a JSON string
rule_single_instance = RuleSingle.from_json(json)
# print the JSON string representation of the object
print(RuleSingle.to_json())
# convert the object into a dict
rule_single_dict = rule_single_instance.to_dict()
# create an instance of RuleSingle from a dict
rule_single_form_dict = rule_single.from_dict(rule_single_dict)