Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

AcceptInviteResponse

Response returned after accepting an invite.

Properties

Name Type Description Notes
tenant_id UUID
role TenantUserRole

Example

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)

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