ConnectionToken Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | UUID | [optional] | |
| provider | int | ||
| endpoint | UUID |
from authentik_client.models.connection_token_request import ConnectionTokenRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionTokenRequest from a JSON string
connection_token_request_instance = ConnectionTokenRequest.from_json(json)
# print the JSON string representation of the object
print(ConnectionTokenRequest.to_json())
# convert the object into a dict
connection_token_request_dict = connection_token_request_instance.to_dict()
# create an instance of ConnectionTokenRequest from a dict
connection_token_request_from_dict = ConnectionTokenRequest.from_dict(connection_token_request_dict)