Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.33 KB

File metadata and controls

35 lines (26 loc) · 1.33 KB

PatchedSCIMSourceRequest

SCIMSource Serializer

Properties

Name Type Description Notes
name str Source's display Name. [optional]
slug str Internal source name, used in URLs. [optional]
enabled bool [optional]
user_property_mappings List[UUID] [optional]
group_property_mappings List[UUID] [optional]
user_path_template str [optional]

Example

from authentik_client.models.patched_scim_source_request import PatchedSCIMSourceRequest

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

# convert the object into a dict
patched_scim_source_request_dict = patched_scim_source_request_instance.to_dict()
# create an instance of PatchedSCIMSourceRequest from a dict
patched_scim_source_request_from_dict = PatchedSCIMSourceRequest.from_dict(patched_scim_source_request_dict)

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