SCIMProviderGroup Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [readonly] | |
| scim_id | str | ||
| group | UUID | ||
| group_obj | PartialGroup | [readonly] | |
| provider | int | ||
| attributes | Dict[str, object] | [readonly] |
from authentik_client.models.scim_provider_group import SCIMProviderGroup
# TODO update the JSON string below
json = "{}"
# create an instance of SCIMProviderGroup from a JSON string
scim_provider_group_instance = SCIMProviderGroup.from_json(json)
# print the JSON string representation of the object
print(SCIMProviderGroup.to_json())
# convert the object into a dict
scim_provider_group_dict = scim_provider_group_instance.to_dict()
# create an instance of SCIMProviderGroup from a dict
scim_provider_group_from_dict = SCIMProviderGroup.from_dict(scim_provider_group_dict)