Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

InviteLinkSettingsResponse

Tenant-wide invite-link settings (exposed via API).

Properties

Name Type Description Notes
enabled bool Whether the invite link is active
role str Role assigned to joining users
groups List[UUID] Groups the joining user is added to [optional]

Example

from ksapi.models.invite_link_settings_response import InviteLinkSettingsResponse

# TODO update the JSON string below
json = "{}"
# create an instance of InviteLinkSettingsResponse from a JSON string
invite_link_settings_response_instance = InviteLinkSettingsResponse.from_json(json)
# print the JSON string representation of the object
print(InviteLinkSettingsResponse.to_json())

# convert the object into a dict
invite_link_settings_response_dict = invite_link_settings_response_instance.to_dict()
# create an instance of InviteLinkSettingsResponse from a dict
invite_link_settings_response_from_dict = InviteLinkSettingsResponse.from_dict(invite_link_settings_response_dict)

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