| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[RuleRead] | ||
| links | PageLink | ||
| meta | Meta |
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_from_dict = RuleArray.from_dict(rule_array_dict)