Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 995 Bytes

File metadata and controls

33 lines (24 loc) · 995 Bytes

Member

Properties

Name Type Description Notes
id int The id of the member
team_id int The id of the team
user_id int The id of the user
role Role The role of the member
is_active bool If the member is active

Example

from compute_api_client.models.member import Member

# TODO update the JSON string below
json = "{}"
# create an instance of Member from a JSON string
member_instance = Member.from_json(json)
# print the JSON string representation of the object
print(Member.to_json())

# convert the object into a dict
member_dict = member_instance.to_dict()
# create an instance of Member from a dict
member_from_dict = Member.from_dict(member_dict)

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