Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 927 Bytes

UserArray.md

File metadata and controls

31 lines (22 loc) · 927 Bytes

UserArray

Properties

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

Example

from firefly_iii_client.models.user_array import UserArray

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

# convert the object into a dict
user_array_dict = user_array_instance.to_dict()
# create an instance of UserArray from a dict
user_array_form_dict = user_array.from_dict(user_array_dict)

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