ConnectionToken Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | UUID | [optional] | |
| provider | int | ||
| provider_obj | RACProvider | [readonly] | |
| endpoint | UUID | ||
| endpoint_obj | Endpoint | [readonly] | |
| user | PartialUser | [readonly] |
from authentik_client.models.connection_token import ConnectionToken
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionToken from a JSON string
connection_token_instance = ConnectionToken.from_json(json)
# print the JSON string representation of the object
print(ConnectionToken.to_json())
# convert the object into a dict
connection_token_dict = connection_token_instance.to_dict()
# create an instance of ConnectionToken from a dict
connection_token_from_dict = ConnectionToken.from_dict(connection_token_dict)