Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

GoogleWorkspaceProviderUserRequest

GoogleWorkspaceProviderUser Serializer

Properties

Name Type Description Notes
google_id str
user int
provider int

Example

from authentik_client.models.google_workspace_provider_user_request import GoogleWorkspaceProviderUserRequest

# TODO update the JSON string below
json = "{}"
# create an instance of GoogleWorkspaceProviderUserRequest from a JSON string
google_workspace_provider_user_request_instance = GoogleWorkspaceProviderUserRequest.from_json(json)
# print the JSON string representation of the object
print(GoogleWorkspaceProviderUserRequest.to_json())

# convert the object into a dict
google_workspace_provider_user_request_dict = google_workspace_provider_user_request_instance.to_dict()
# create an instance of GoogleWorkspaceProviderUserRequest from a dict
google_workspace_provider_user_request_from_dict = GoogleWorkspaceProviderUserRequest.from_dict(google_workspace_provider_user_request_dict)

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