Name | Type | Description | Notes |
---|---|---|---|
id | int | ||
team_id | int | ||
user_id | int | ||
role | Role | ||
is_active | bool |
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_form_dict = member.from_dict(member_dict)