Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.29 KB

File metadata and controls

35 lines (26 loc) · 1.29 KB

GoogleWorkspaceProviderUser

GoogleWorkspaceProviderUser Serializer

Properties

Name Type Description Notes
id UUID [readonly]
google_id str
user int
user_obj PartialUser [readonly]
provider int
attributes Dict[str, object] [readonly]

Example

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)

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