Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 933 Bytes

File metadata and controls

33 lines (24 loc) · 933 Bytes

TeamMember

Properties

Name Type Description Notes
email str
is_admin bool
role str
user_id int
username str

Example

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)

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