| Name | Type | Description | Notes |
|---|---|---|---|
| user_id | int | The ID of the user associated with this entity. |
from talon_one.models.user_entity import UserEntity
# TODO update the JSON string below
json = "{}"
# create an instance of UserEntity from a JSON string
user_entity_instance = UserEntity.from_json(json)
# print the JSON string representation of the object
print(UserEntity.to_json())
# convert the object into a dict
user_entity_dict = user_entity_instance.to_dict()
# create an instance of UserEntity from a dict
user_entity_from_dict = UserEntity.from_dict(user_entity_dict)