Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.4 KB

File metadata and controls

34 lines (25 loc) · 1.4 KB

PatchedUserOAuthSourceConnectionRequest

User source connection

Properties

Name Type Description Notes
user int [optional]
source UUID [optional]
identifier str [optional]
access_token str [optional]
expires datetime [optional]

Example

from authentik_client.models.patched_user_o_auth_source_connection_request import PatchedUserOAuthSourceConnectionRequest

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

# convert the object into a dict
patched_user_o_auth_source_connection_request_dict = patched_user_o_auth_source_connection_request_instance.to_dict()
# create an instance of PatchedUserOAuthSourceConnectionRequest from a dict
patched_user_o_auth_source_connection_request_from_dict = PatchedUserOAuthSourceConnectionRequest.from_dict(patched_user_o_auth_source_connection_request_dict)

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