Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

AgentTokenResponse

Base serializer class which doesn't implement create/update methods

Properties

Name Type Description Notes
token str
expires_in int [optional]

Example

from authentik_client.models.agent_token_response import AgentTokenResponse

# TODO update the JSON string below
json = "{}"
# create an instance of AgentTokenResponse from a JSON string
agent_token_response_instance = AgentTokenResponse.from_json(json)
# print the JSON string representation of the object
print(AgentTokenResponse.to_json())

# convert the object into a dict
agent_token_response_dict = agent_token_response_instance.to_dict()
# create an instance of AgentTokenResponse from a dict
agent_token_response_from_dict = AgentTokenResponse.from_dict(agent_token_response_dict)

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