Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 951 Bytes

PreferenceUpdate.md

File metadata and controls

29 lines (20 loc) · 951 Bytes

PreferenceUpdate

Properties

Name Type Description Notes
data PolymorphicProperty

Example

from firefly_iii_client.models.preference_update import PreferenceUpdate

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

# convert the object into a dict
preference_update_dict = preference_update_instance.to_dict()
# create an instance of PreferenceUpdate from a dict
preference_update_form_dict = preference_update.from_dict(preference_update_dict)

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