Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

ConnectionTokenRequest

ConnectionToken Serializer

Properties

Name Type Description Notes
pk UUID [optional]
provider int
endpoint UUID

Example

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)

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