Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1009 Bytes

RuleGroupArray.md

File metadata and controls

31 lines (22 loc) · 1009 Bytes

RuleGroupArray

Properties

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

Example

from firefly_iii_client.models.rule_group_array import RuleGroupArray

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

# convert the object into a dict
rule_group_array_dict = rule_group_array_instance.to_dict()
# create an instance of RuleGroupArray from a dict
rule_group_array_form_dict = rule_group_array.from_dict(rule_group_array_dict)

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