Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1007 Bytes

Preference.md

File metadata and controls

32 lines (23 loc) · 1007 Bytes

Preference

Properties

Name Type Description Notes
created_at datetime [optional] [readonly]
data PolymorphicProperty
name str
updated_at datetime [optional] [readonly]

Example

from firefly_iii_client.models.preference import Preference

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

# convert the object into a dict
preference_dict = preference_instance.to_dict()
# create an instance of Preference from a dict
preference_form_dict = preference.from_dict(preference_dict)

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