SCIMProviderGroup Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| scim_id | str | ||
| group | UUID | ||
| provider | int |
from authentik_client.models.scim_provider_group_request import SCIMProviderGroupRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SCIMProviderGroupRequest from a JSON string
scim_provider_group_request_instance = SCIMProviderGroupRequest.from_json(json)
# print the JSON string representation of the object
print(SCIMProviderGroupRequest.to_json())
# convert the object into a dict
scim_provider_group_request_dict = scim_provider_group_request_instance.to_dict()
# create an instance of SCIMProviderGroupRequest from a dict
scim_provider_group_request_from_dict = SCIMProviderGroupRequest.from_dict(scim_provider_group_request_dict)