SCIMSource Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Source's display Name. | |
| slug | str | Internal source name, used in URLs. | |
| enabled | bool | [optional] | |
| user_property_mappings | List[UUID] | [optional] | |
| group_property_mappings | List[UUID] | [optional] | |
| user_path_template | str | [optional] |
from authentik_client.models.scim_source_request import SCIMSourceRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SCIMSourceRequest from a JSON string
scim_source_request_instance = SCIMSourceRequest.from_json(json)
# print the JSON string representation of the object
print(SCIMSourceRequest.to_json())
# convert the object into a dict
scim_source_request_dict = scim_source_request_instance.to_dict()
# create an instance of SCIMSourceRequest from a dict
scim_source_request_from_dict = SCIMSourceRequest.from_dict(scim_source_request_dict)