Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

File metadata and controls

32 lines (23 loc) · 1.18 KB

AcceptInviteResponse

Response returned after accepting an invite.

Properties

Name Type Description Notes
tenant_id UUID
role TenantUserRole
skipped_groups List[UUID] Groups configured on the invite/tenant link that no longer exist and were therefore skipped. [optional]

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]