Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.05 KB

File metadata and controls

36 lines (27 loc) · 2.05 KB

ScimServiceProviderConfigResponse

Service provider configuration details.

Properties

Name Type Description Notes
bulk ScimServiceProviderConfigResponseBulk [optional]
change_password ScimServiceProviderConfigResponseChangePassword [optional]
documentation_uri str The URI that points to the SCIM service provider's documentation, providing further details about the service's capabilities and usage. [optional]
filter ScimServiceProviderConfigResponseFilter [optional]
patch ScimServiceProviderConfigResponsePatch [optional]
schemas List[str] A list of SCIM schemas that define the structure and data types supported by the service provider. [optional]
sort ScimServiceProviderConfigResponseSort [optional]

Example

from talon_one.models.scim_service_provider_config_response import ScimServiceProviderConfigResponse

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

# convert the object into a dict
scim_service_provider_config_response_dict = scim_service_provider_config_response_instance.to_dict()
# create an instance of ScimServiceProviderConfigResponse from a dict
scim_service_provider_config_response_from_dict = ScimServiceProviderConfigResponse.from_dict(scim_service_provider_config_response_dict)

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