Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.14 KB

File metadata and controls

30 lines (21 loc) · 1.14 KB

FrameChallengeResponseRequest

Base class for all challenge responses

Properties

Name Type Description Notes
component str [optional] [default to 'xak-flow-frame']

Example

from authentik_client.models.frame_challenge_response_request import FrameChallengeResponseRequest

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

# convert the object into a dict
frame_challenge_response_request_dict = frame_challenge_response_request_instance.to_dict()
# create an instance of FrameChallengeResponseRequest from a dict
frame_challenge_response_request_from_dict = FrameChallengeResponseRequest.from_dict(frame_challenge_response_request_dict)

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