Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.3 KB

File metadata and controls

35 lines (26 loc) · 1.3 KB

GoogleWorkspaceProviderGroup

GoogleWorkspaceProviderGroup Serializer

Properties

Name Type Description Notes
id UUID [readonly]
google_id str
group UUID
group_obj PartialGroup [readonly]
provider int
attributes Dict[str, object] [readonly]

Example

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)

[Back to Model list] [Back to API list] [Back to README]