| Name |
Type |
Description |
Notes |
| 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 |
[optional] [default to False] |
from compute_api_client.models.member_in import MemberIn
# TODO update the JSON string below
json = "{}"
# create an instance of MemberIn from a JSON string
member_in_instance = MemberIn.from_json(json)
# print the JSON string representation of the object
print(MemberIn.to_json())
# convert the object into a dict
member_in_dict = member_in_instance.to_dict()
# create an instance of MemberIn from a dict
member_in_from_dict = MemberIn.from_dict(member_in_dict)
[Back to Model list] [Back to API list] [Back to README]