Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 927 Bytes

RuleArray.md

File metadata and controls

31 lines (22 loc) · 927 Bytes

RuleArray

Properties

Name Type Description Notes
data List[RuleRead]
links PageLink
meta Meta

Example

from firefly_iii_client.models.rule_array import RuleArray

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

# convert the object into a dict
rule_array_dict = rule_array_instance.to_dict()
# create an instance of RuleArray from a dict
rule_array_form_dict = rule_array.from_dict(rule_array_dict)

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