Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.29 KB

File metadata and controls

34 lines (25 loc) · 1.29 KB

EndpointAgentChallenge

Signed challenge for authentik agent to respond to

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-endpoint-agent']
response_errors Dict[str, List[ErrorDetail]] [optional]
challenge str
challenge_idle_timeout int

Example

from authentik_client.models.endpoint_agent_challenge import EndpointAgentChallenge

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

# convert the object into a dict
endpoint_agent_challenge_dict = endpoint_agent_challenge_instance.to_dict()
# create an instance of EndpointAgentChallenge from a dict
endpoint_agent_challenge_from_dict = EndpointAgentChallenge.from_dict(endpoint_agent_challenge_dict)

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