Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 941 Bytes

PreferenceSingle.md

File metadata and controls

29 lines (20 loc) · 941 Bytes

PreferenceSingle

Properties

Name Type Description Notes
data PreferenceRead

Example

from firefly_iii_client.models.preference_single import PreferenceSingle

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

# convert the object into a dict
preference_single_dict = preference_single_instance.to_dict()
# create an instance of PreferenceSingle from a dict
preference_single_form_dict = preference_single.from_dict(preference_single_dict)

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