Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 871 Bytes

File metadata and controls

29 lines (20 loc) · 871 Bytes

UserEntity

Properties

Name Type Description Notes
user_id int The ID of the user associated with this entity.

Example

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)

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