Response returned after accepting an invite.
| Name | Type | Description | Notes |
|---|---|---|---|
| tenant_id | UUID | ||
| role | TenantUserRole |
from ksapi.models.accept_invite_response import AcceptInviteResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AcceptInviteResponse from a JSON string
accept_invite_response_instance = AcceptInviteResponse.from_json(json)
# print the JSON string representation of the object
print(AcceptInviteResponse.to_json())
# convert the object into a dict
accept_invite_response_dict = accept_invite_response_instance.to_dict()
# create an instance of AcceptInviteResponse from a dict
accept_invite_response_from_dict = AcceptInviteResponse.from_dict(accept_invite_response_dict)