Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

File metadata and controls

31 lines (22 loc) · 1.2 KB

PasswordChallengeResponseRequest

Password challenge response

Properties

Name Type Description Notes
component str [optional] [default to 'ak-stage-password']
password str

Example

from authentik_client.models.password_challenge_response_request import PasswordChallengeResponseRequest

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

# convert the object into a dict
password_challenge_response_request_dict = password_challenge_response_request_instance.to_dict()
# create an instance of PasswordChallengeResponseRequest from a dict
password_challenge_response_request_from_dict = PasswordChallengeResponseRequest.from_dict(password_challenge_response_request_dict)

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