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