Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.11 KB

File metadata and controls

29 lines (21 loc) · 1.11 KB

SsoSettingsRequestsDto

The request parameters for the Single Sign-On (SSO) configuration settings.

Properties

Name Type Description Notes
serialize_settings str The JSON-serialized SSO configuration settings.

Example

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)

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