Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.09 KB

File metadata and controls

35 lines (26 loc) · 1.09 KB

TeamMember

Properties

Name Type Description Notes
id int [optional]
access TeamMemberAccess [optional]
status int [optional]
last_datetime datetime [optional]
datetime datetime [optional]
team_id int [optional]
name str [optional]

Example

from openapi_client.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]