Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

GoogleWorkspaceProviderGroupRequest

GoogleWorkspaceProviderGroup Serializer

Properties

Name Type Description Notes
google_id str
group UUID
provider int

Example

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)

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