| Name | Type | Description | Notes |
|---|---|---|---|
| str | |||
| is_admin | bool | ||
| role | str | ||
| user_id | int | ||
| username | str |
from revengai.models.team_member import TeamMember
# TODO update the JSON string below
json = "{}"
# create an instance of TeamMember from a JSON string
team_member_instance = TeamMember.from_json(json)
# print the JSON string representation of the object
print(TeamMember.to_json())
# convert the object into a dict
team_member_dict = team_member_instance.to_dict()
# create an instance of TeamMember from a dict
team_member_from_dict = TeamMember.from_dict(team_member_dict)