GoogleWorkspaceProviderGroup Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| google_id | str | ||
| group | UUID | ||
| provider | int |
from authentik_client.models.google_workspace_provider_group_request import GoogleWorkspaceProviderGroupRequest
# TODO update the JSON string below
json = "{}"
# create an instance of GoogleWorkspaceProviderGroupRequest from a JSON string
google_workspace_provider_group_request_instance = GoogleWorkspaceProviderGroupRequest.from_json(json)
# print the JSON string representation of the object
print(GoogleWorkspaceProviderGroupRequest.to_json())
# convert the object into a dict
google_workspace_provider_group_request_dict = google_workspace_provider_group_request_instance.to_dict()
# create an instance of GoogleWorkspaceProviderGroupRequest from a dict
google_workspace_provider_group_request_from_dict = GoogleWorkspaceProviderGroupRequest.from_dict(google_workspace_provider_group_request_dict)