Name | Type | Description | Notes |
---|---|---|---|
attributes | User | ||
id | str | ||
links | ObjectLink | ||
type | str | Immutable value |
from firefly_iii_client.models.user_read import UserRead
# TODO update the JSON string below
json = "{}"
# create an instance of UserRead from a JSON string
user_read_instance = UserRead.from_json(json)
# print the JSON string representation of the object
print(UserRead.to_json())
# convert the object into a dict
user_read_dict = user_read_instance.to_dict()
# create an instance of UserRead from a dict
user_read_form_dict = user_read.from_dict(user_read_dict)