Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

Configuration.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

Configuration

Properties

Name Type Description Notes
editable bool If this config variable can be edited by the user
title ConfigValueFilter
value PolymorphicProperty

Example

from firefly_iii_client.models.configuration import Configuration

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

# convert the object into a dict
configuration_dict = configuration_instance.to_dict()
# create an instance of Configuration from a dict
configuration_form_dict = configuration.from_dict(configuration_dict)

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