Name |
Type |
Description |
Notes |
active |
bool |
|
[optional] |
description |
str |
|
[optional] |
order |
int |
|
[optional] |
title |
str |
|
[optional] |
from firefly_iii_client.models.rule_group_update import RuleGroupUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of RuleGroupUpdate from a JSON string
rule_group_update_instance = RuleGroupUpdate.from_json(json)
# print the JSON string representation of the object
print(RuleGroupUpdate.to_json())
# convert the object into a dict
rule_group_update_dict = rule_group_update_instance.to_dict()
# create an instance of RuleGroupUpdate from a dict
rule_group_update_form_dict = rule_group_update.from_dict(rule_group_update_dict)
[Back to Model list] [Back to API list] [Back to README]