Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1018 Bytes

RuleGroupRead.md

File metadata and controls

32 lines (23 loc) · 1018 Bytes

RuleGroupRead

Properties

Name Type Description Notes
attributes RuleGroup
id str
links ObjectLink
type str Immutable value

Example

from firefly_iii_client.models.rule_group_read import RuleGroupRead

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

# convert the object into a dict
rule_group_read_dict = rule_group_read_instance.to_dict()
# create an instance of RuleGroupRead from a dict
rule_group_read_form_dict = rule_group_read.from_dict(rule_group_read_dict)

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