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