Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1017 Bytes

PreferenceArray.md

File metadata and controls

31 lines (22 loc) · 1017 Bytes

PreferenceArray

Properties

Name Type Description Notes
data List[PreferenceRead]
links PageLink
meta Meta

Example

from firefly_iii_client.models.preference_array import PreferenceArray

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

# convert the object into a dict
preference_array_dict = preference_array_instance.to_dict()
# create an instance of PreferenceArray from a dict
preference_array_form_dict = preference_array.from_dict(preference_array_dict)

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