| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | datetime | ||
| str | |||
| profile | UserProfile | ||
| role | str | ||
| tier | str | [optional] | |
| user_id | int |
fromrevengai.models.userimportUser# TODO update the JSON string belowjson="{}"# create an instance of User from a JSON stringuser_instance=User.from_json(json)
# print the JSON string representation of the objectprint(User.to_json())
# convert the object into a dictuser_dict=user_instance.to_dict()
# create an instance of User from a dictuser_from_dict=User.from_dict(user_dict)