Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.36 KB

File metadata and controls

31 lines (22 loc) · 1.36 KB

AuthenticatorTOTPChallengeResponseRequest

TOTP Challenge response, device is set by get_response_instance

Properties

Name Type Description Notes
component str [optional] [default to 'ak-stage-authenticator-totp']
code str

Example

from authentik_client.models.authenticator_totp_challenge_response_request import AuthenticatorTOTPChallengeResponseRequest

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

# convert the object into a dict
authenticator_totp_challenge_response_request_dict = authenticator_totp_challenge_response_request_instance.to_dict()
# create an instance of AuthenticatorTOTPChallengeResponseRequest from a dict
authenticator_totp_challenge_response_request_from_dict = AuthenticatorTOTPChallengeResponseRequest.from_dict(authenticator_totp_challenge_response_request_dict)

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