Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 851 Bytes

UserSingle.md

File metadata and controls

29 lines (20 loc) · 851 Bytes

UserSingle

Properties

Name Type Description Notes
data UserRead

Example

from firefly_iii_client.models.user_single import UserSingle

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

# convert the object into a dict
user_single_dict = user_single_instance.to_dict()
# create an instance of UserSingle from a dict
user_single_form_dict = user_single.from_dict(user_single_dict)

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