Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

ScimServiceProviderConfigPatch.md

File metadata and controls

30 lines (21 loc) · 1.21 KB

ScimServiceProviderConfigPatch

A complex type that specifies PATCH configuration options.

Properties

Name Type Description Notes
supported bool A Boolean value specifying whether or not the operation is supported.

Example

from eZmaxApi.models.scim_service_provider_config_patch import ScimServiceProviderConfigPatch

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

# convert the object into a dict
scim_service_provider_config_patch_dict = scim_service_provider_config_patch_instance.to_dict()
# create an instance of ScimServiceProviderConfigPatch from a dict
scim_service_provider_config_patch_form_dict = scim_service_provider_config_patch.from_dict(scim_service_provider_config_patch_dict)

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