User Object ### Description The User object is used to represent a user. ### Usage Example Fetch from the LIST Sessions endpoint.
| Name | Type | Description | Notes |
|---|---|---|---|
| user_id | UUID | The ID of the user. | |
| str | The email of the user. | ||
| full_name | str | The full name of the user. | |
| first_name | str | The first name of the user. | |
| last_name | str | The last name of the user. | |
| position | str | The user's position. | |
| hr_idp_status | UserHrIdpStatusEnum | [optional] |
from opal_security.models.user import User
# TODO update the JSON string below
json = "{}"
# create an instance of User from a JSON string
user_instance = User.from_json(json)
# print the JSON string representation of the object
print(User.to_json())
# convert the object into a dict
user_dict = user_instance.to_dict()
# create an instance of User from a dict
user_from_dict = User.from_dict(user_dict)