SCIMProviderUser Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | [readonly] | |
| scim_id | str | ||
| user | int | ||
| user_obj | PartialUser | [readonly] | |
| provider | int | ||
| attributes | Dict[str, object] | [readonly] |
from authentik_client.models.scim_provider_user import SCIMProviderUser
# TODO update the JSON string below
json = "{}"
# create an instance of SCIMProviderUser from a JSON string
scim_provider_user_instance = SCIMProviderUser.from_json(json)
# print the JSON string representation of the object
print(SCIMProviderUser.to_json())
# convert the object into a dict
scim_provider_user_dict = scim_provider_user_instance.to_dict()
# create an instance of SCIMProviderUser from a dict
scim_provider_user_from_dict = SCIMProviderUser.from_dict(scim_provider_user_dict)