The request parameters for the Single Sign-On (SSO) configuration settings.
| Name | Type | Description | Notes |
|---|---|---|---|
| serialize_settings | str | The JSON-serialized SSO configuration settings. |
from docspace_api_sdk.models.sso_settings_requests_dto import SsoSettingsRequestsDto
# TODO update the JSON string below
json = "{}"
# create an instance of SsoSettingsRequestsDto from a JSON string
sso_settings_requests_dto_instance = SsoSettingsRequestsDto.from_json(json)
# print the JSON string representation of the object
print(SsoSettingsRequestsDto.to_json())
# convert the object into a dict
sso_settings_requests_dto_dict = sso_settings_requests_dto_instance.to_dict()
# create an instance of SsoSettingsRequestsDto from a dict
sso_settings_requests_dto_from_dict = SsoSettingsRequestsDto.from_dict(sso_settings_requests_dto_dict)