Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 851 Bytes

RuleSingle.md

File metadata and controls

29 lines (20 loc) · 851 Bytes

RuleSingle

Properties

Name Type Description Notes
data RuleRead

Example

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)

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