Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.16 KB

File metadata and controls

35 lines (26 loc) · 1.16 KB

ConnectionToken

ConnectionToken Serializer

Properties

Name Type Description Notes
pk UUID [optional]
provider int
provider_obj RACProvider [readonly]
endpoint UUID
endpoint_obj Endpoint [readonly]
user PartialUser [readonly]

Example

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)

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