User source connection
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | int | [readonly] | |
| user | int | ||
| source | UUID | ||
| source_obj | Source | [readonly] | |
| identifier | str | ||
| created | datetime | [readonly] | |
| last_updated | datetime | [readonly] | |
| expires | datetime | [optional] |
from authentik_client.models.user_o_auth_source_connection import UserOAuthSourceConnection
# TODO update the JSON string below
json = "{}"
# create an instance of UserOAuthSourceConnection from a JSON string
user_o_auth_source_connection_instance = UserOAuthSourceConnection.from_json(json)
# print the JSON string representation of the object
print(UserOAuthSourceConnection.to_json())
# convert the object into a dict
user_o_auth_source_connection_dict = user_o_auth_source_connection_instance.to_dict()
# create an instance of UserOAuthSourceConnection from a dict
user_o_auth_source_connection_from_dict = UserOAuthSourceConnection.from_dict(user_o_auth_source_connection_dict)